Archived
1
0
Fork 0

Adding Item Page

This commit is contained in:
Henrik Hautakoski 2021-07-30 12:31:31 +02:00
parent 868d49af23
commit ac7e64c75c
6 changed files with 148 additions and 0 deletions

View file

@ -0,0 +1,8 @@
<x-layout name="app">
<x-slot name="title">{{ __('Items') }}</x-slot>
<div class="p-4">
<livewire:items />
</div>
</x-layout>

View file

@ -0,0 +1,8 @@
<x-layout name="app">
<x-slot name="title">{{ __('Item') }} - {{ $item->name }}</x-slot>
<div class="p-4">
</div>
</x-layout>