65 lines
2.0 KiB
PHP
65 lines
2.0 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
<title>{{ config('app.name', 'Laravel') }}</title>
|
|
|
|
<!-- Google Font: Source Sans Pro -->
|
|
<link rel="stylesheet"
|
|
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback">
|
|
<!-- Font Awesome Icons -->
|
|
<link rel="stylesheet" href="{{ asset('plugins/fontawesome-free/css/all.min.css') }}">
|
|
<!-- SweetAlert2 -->
|
|
<link rel="stylesheet" href="{{ asset('plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.min.css') }}">
|
|
<!-- IonIcons -->
|
|
<link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
|
|
<!-- Theme style -->
|
|
<link rel="stylesheet" href="{{ asset('dist/css/adminlte.min.css') }}">
|
|
|
|
@stack('styles')
|
|
</head>
|
|
|
|
<body class="hold-transition sidebar-mini">
|
|
<div class="wrapper">
|
|
@include('layouts.partials.navbar')
|
|
@include('layouts.partials.sidebar')
|
|
|
|
<div class="content-wrapper">
|
|
@yield('content-header')
|
|
|
|
<section class="content">
|
|
<div class="container-fluid">
|
|
@yield('main-content')
|
|
</div>
|
|
</section>
|
|
</div>
|
|
@include('layouts.partials.footer')
|
|
</div>
|
|
|
|
<!-- jQuery -->
|
|
<script src="{{ asset('plugins/jquery/jquery.min.js') }}"></script>
|
|
<!-- Bootstrap -->
|
|
<script src="{{ asset('plugins/bootstrap/js/bootstrap.bundle.min.js') }}"></script>
|
|
<!-- AdminLTE -->
|
|
<script src="{{ asset('dist/js/adminlte.js') }}"></script>
|
|
<!-- SweetAlert2 -->
|
|
<script src="{{ asset('plugins/sweetalert2/sweetalert2.min.js') }}"></script>
|
|
|
|
<script>
|
|
var Toast = Swal.mixin({
|
|
toast: true,
|
|
position: 'top-end',
|
|
showConfirmButton: false,
|
|
timer: 3000
|
|
});
|
|
</script>
|
|
|
|
@stack('scripts')
|
|
</body>
|
|
|
|
</html>
|