Initial Commit
This commit is contained in:
commit
ddf09fe00c
113 changed files with 187148 additions and 0 deletions
16
resources/views/layouts/app.blade.php
Normal file
16
resources/views/layouts/app.blade.php
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Bingo!</title>
|
||||
<link rel="stylesheet" href="{{ asset('css/app.css') }}">
|
||||
@livewireStyles
|
||||
</head>
|
||||
<body>
|
||||
|
||||
{{ $slot }}
|
||||
|
||||
@livewireScripts
|
||||
</body>
|
||||
</html>
|
||||
Reference in a new issue