Files
bappli-jurassic-land/resources/views/paddock/layout.blade.php
Benjamin Sigonneau cf6d0ab467 List all paddocks, create new paddock.
All paddocks new paddocks are closed.
2020-04-17 09:08:22 +02:00

17 lines
410 B
PHP

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>Jurassic Land</title>
</head>
<body>
<h1>Jurassic Land</h1>
<div class="container">
@yield('content')
</div>
</body>
</html>