diff --git a/skolehjem/resources/views/admin/washing-reservations/create.blade.php b/skolehjem/resources/views/admin/washing-reservations/create.blade.php new file mode 100644 index 0000000..5460e31 --- /dev/null +++ b/skolehjem/resources/views/admin/washing-reservations/create.blade.php @@ -0,0 +1,27 @@ +@extends("admin.layout.base") +@extends("admin.layout.header") + +@section("title") + Booking - Opret +@endsection + +@section("path") + Opret Booking / +@endsection + +@section("content") +

Opret Booking:

+
+ @csrf + + + + + + + + +
+@endsection diff --git a/skolehjem/resources/views/admin/washing-reservations/delete.blade.php b/skolehjem/resources/views/admin/washing-reservations/delete.blade.php new file mode 100644 index 0000000..faf2283 --- /dev/null +++ b/skolehjem/resources/views/admin/washing-reservations/delete.blade.php @@ -0,0 +1,13 @@ +@extends("admin.layout.base") +@extends("admin.layout.header") + +@section("title") + Booking - Fjern +@endsection + +@section("path") + Fjern Booking / +@endsection + +@section("content") +@endsection diff --git a/skolehjem/resources/views/admin/washing-reservations/edit.blade.php b/skolehjem/resources/views/admin/washing-reservations/edit.blade.php new file mode 100644 index 0000000..036dbf0 --- /dev/null +++ b/skolehjem/resources/views/admin/washing-reservations/edit.blade.php @@ -0,0 +1,28 @@ +@extends("admin.layout.base") +@extends("admin.layout.header") + +@section("title") + Booking - Rediger +@endsection + +@section("path") + Rediger Booking / +@endsection + +@section("content") +

Rediger Booking:

+
+ @csrf + + + + + + + + + +
+@endsection diff --git a/skolehjem/resources/views/admin/washing-reservations/index.blade.php b/skolehjem/resources/views/admin/washing-reservations/index.blade.php new file mode 100644 index 0000000..c298261 --- /dev/null +++ b/skolehjem/resources/views/admin/washing-reservations/index.blade.php @@ -0,0 +1,37 @@ +@extends("admin.layout.base") +@extends("admin.layout.header") + +@section("title") + Booking - Vis +@endsection + +@section("path") + Vis Booking / +@endsection + +@section("content") + + + + + + + + + + + @foreach($reservations as $reservation) + + + + + + + + + + @endforeach +
IDFornavnEfternavnTlf nrVaskemaskineUpdateDelete
{ID}{Fornavn}{Efternavn}{Tlf Nr}{Vaskemaskine Nr.}UpdateDelete
+ + {{ $reservations->links() }} +@endsection diff --git a/skolehjem/resources/views/admin/washing-reservations/show.blade.php b/skolehjem/resources/views/admin/washing-reservations/show.blade.php new file mode 100644 index 0000000..6dea5a8 --- /dev/null +++ b/skolehjem/resources/views/admin/washing-reservations/show.blade.php @@ -0,0 +1,33 @@ +@extends("admin.layout.base") +@extends("admin.layout.header") + +@section("title") + Booking - Vis +@endsection + +@section("path") + Vis Booking / +@endsection + +@section("content") + + + + + + + + + + + + + + + + + + + +
IDFornavnEfternavnTelefon Nr.VaskemaskineUpdateDelete
IDFornavnEfternavnTelefon Nr.VaskemaskineUpdateDelete
+@endsection diff --git a/skolehjem/resources/views/admin/washing-reservations/store.blade.php b/skolehjem/resources/views/admin/washing-reservations/store.blade.php new file mode 100644 index 0000000..616c3e8 --- /dev/null +++ b/skolehjem/resources/views/admin/washing-reservations/store.blade.php @@ -0,0 +1,14 @@ +@extends("admin.layout.base") +@extends("admin.layout.header") + +@section("title") + Booking - Opret +@endsection + +@section("path") + Opret Booking / +@endsection + +@section("content") + Booking blev (ikke) oprettet. +@endsection diff --git a/skolehjem/resources/views/admin/washing-reservations/update.blade.php b/skolehjem/resources/views/admin/washing-reservations/update.blade.php new file mode 100644 index 0000000..9dd8408 --- /dev/null +++ b/skolehjem/resources/views/admin/washing-reservations/update.blade.php @@ -0,0 +1,14 @@ +@extends("admin.layout.base") +@extends("admin.layout.header") + +@section("title") + Booking - Rediger +@endsection + +@section("path") + Rediger Booking / +@endsection + +@section("content") + Din booking blev (ikke) redigeret. +@endsection