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