Initial Commit
This commit is contained in:
commit
9b22323711
36 changed files with 7164 additions and 0 deletions
18
resources/views/layouts/default.blade.php
Normal file
18
resources/views/layouts/default.blade.php
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="stylesheet" href="{{ asset('/assets/bootstrap.min.css') }}">
|
||||
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container mt-5 p-5 text-center">
|
||||
@yield('content')
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in a new issue