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