Setting up + routing the page

This commit is contained in:
p.sterz
2023-07-21 12:39:11 +02:00
parent dc5560aa75
commit 61050ada15
5 changed files with 46 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace App\Http\Livewire\BooksForPlebs;
use Livewire\Component;
class BookRentalGuide extends Component
{
public function render()
{
return view('livewire.books-for-plebs.book-rental-guide');
}
}