Uploading content
This commit is contained in:
18
app/Livewire/Examples/TableWithBindedRoutesComponent.php
Normal file
18
app/Livewire/Examples/TableWithBindedRoutesComponent.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace App\Livewire\Examples;
|
||||
|
||||
use App\Tables\TableWithBindedRoutes;
|
||||
use Livewire\Component;
|
||||
|
||||
class TableWithBindedRoutesComponent extends Component
|
||||
{
|
||||
public function render()
|
||||
{
|
||||
return view('livewire.examples.table-with-binded-routes', [
|
||||
'table' => TableWithBindedRoutes::class,
|
||||
])
|
||||
->extends('components.layouts.app')
|
||||
->section('content');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user