2020-06-15 10:29:03 +00:00
|
|
|
@extends("admin.layout.base")
|
|
|
|
@extends("admin.layout.header")
|
|
|
|
|
|
|
|
@section("title")
|
|
|
|
Menuplan - Opret
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("path")
|
2020-06-25 14:16:08 +00:00
|
|
|
<a href="{{ route('menu-plans.create') }}" class="text-white">Opret Menuplan</a> /
|
2020-06-15 10:29:03 +00:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("content")
|
|
|
|
<h1>Opret Menuplan:</h1>
|
2020-06-26 06:20:43 +00:00
|
|
|
<form action="{{ action('MenuPlanController@store') }}" method="post">
|
2020-06-25 16:43:46 +00:00
|
|
|
@csrf
|
2020-06-30 10:38:02 +00:00
|
|
|
<label for="week">Uge nr.</label>
|
|
|
|
<input type="number" name="week" id="week" min="1" max="53" placeholder="1" required>
|
2020-06-26 11:11:24 +00:00
|
|
|
<label for="monday">Mandag:</label>
|
2020-06-29 08:50:04 +00:00
|
|
|
<input type="text" name="monday" id="monday" placeholder="Hawaii Pizza" required>
|
2020-06-26 11:11:24 +00:00
|
|
|
<label for="tuesday">Tirsdag:</label>
|
2020-06-29 08:50:04 +00:00
|
|
|
<input type="text" name="tuesday" id="tuesday" placeholder="Pasta Bolognese" required>
|
2020-06-26 11:11:24 +00:00
|
|
|
<label for="wednesday">Onsdag:</label>
|
2020-06-29 08:50:04 +00:00
|
|
|
<input type="text" name="wednesday" id="wednesday" placeholder="Pandekager" required>
|
2020-06-26 11:11:24 +00:00
|
|
|
<label for="thursday">Torsdag:</label>
|
2020-06-29 08:50:04 +00:00
|
|
|
<input type="text" name="thursday" id="thursday" placeholder="Bøf med løg" required>
|
2020-06-15 10:29:03 +00:00
|
|
|
|
|
|
|
<input type="submit" class="btn btn-dark text-white" value="Opret Menuplan">
|
|
|
|
</form>
|
|
|
|
@endsection
|