Organizando y comenzando con interfaces
This commit is contained in:
21
app/Livewire/Cajas/Edit.php
Normal file
21
app/Livewire/Cajas/Edit.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Livewire\Cajas;
|
||||
|
||||
use App\Models\Turno;
|
||||
use Illuminate\Contracts\View\View;
|
||||
use Livewire\Attributes\Url;
|
||||
use Livewire\Component;
|
||||
|
||||
class Edit extends Component
|
||||
{
|
||||
public Turno $turno;
|
||||
|
||||
#[Url]
|
||||
public $tab = 'Ingresos';
|
||||
|
||||
public function render(): View
|
||||
{
|
||||
return view('livewire.cajas.edit');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user