From 4f13e77871c3221045bdc9495c5f863cfe0f6f7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=2E=20Nagy=20Gerg=C5=91?= Date: Thu, 2 Nov 2023 14:58:50 +0100 Subject: [PATCH] add show form --- resources/views/resources/show.blade.php | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 resources/views/resources/show.blade.php diff --git a/resources/views/resources/show.blade.php b/resources/views/resources/show.blade.php new file mode 100644 index 00000000..34845697 --- /dev/null +++ b/resources/views/resources/show.blade.php @@ -0,0 +1,9 @@ +@extends('root::app') + +{{-- Title --}} +@section('title', $title) + +{{-- Content --}} +@section('content') + +@endsection