45 lines
1.4 KiB
PHP
45 lines
1.4 KiB
PHP
<!doctype html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<meta name="app-url" content="{{ env('APP_URL')}}">
|
|
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<!-- Favicon -->
|
|
<title>{{ config('app.name', 'Matrimonial') }}</title>
|
|
|
|
<!-- google font -->
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700">
|
|
|
|
<!-- aiz core css -->
|
|
<link rel="stylesheet" href="{{ static_asset('assets/css/vendors.css') }}">
|
|
<link rel="stylesheet" href="{{ static_asset('assets/css/aiz-core.css?v=') }}{{ rand(1000,9999) }}">
|
|
|
|
<script>
|
|
var AIZ = AIZ || {};
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div class="aiz-main-wrapper d-flex">
|
|
|
|
<div class="flex-grow-1">
|
|
@yield('content')
|
|
</div>
|
|
|
|
</div><!-- .aiz-main-wrapper -->
|
|
<script src="{{ static_asset('assets/js/vendors.js') }}" ></script>
|
|
<script src="{{ static_asset('assets/js/aiz-core.js') }}" ></script>
|
|
|
|
@yield('script')
|
|
|
|
<script type="text/javascript">
|
|
@foreach (session('flash_notification', collect())->toArray() as $message)
|
|
AIZ.plugins.notify('{{ $message['level'] }}', '{{ $message['message'] }}');
|
|
@endforeach
|
|
</script>
|
|
</body>
|
|
</html>
|