Files
generic_table_examples/app/Livewire/Examples/FrameComponent.php
David 69a87b3a5c #FEAT
+ Added EMPTY flag to be used by column settings
2025-03-26 06:11:38 -04:00

17 lines
282 B
PHP

<?php
namespace App\Livewire\Examples;
use Livewire\Component;
class FrameComponent extends Component
{
public function render()
{
return view('livewire.examples.frame-component')
->extends('components.layouts.app')
->section('content');
}
}