Layout Base
This commit is contained in:
@@ -1,6 +1,9 @@
|
||||
<?php
|
||||
|
||||
enum TipoDocumento: string {
|
||||
namespace App\Enums;
|
||||
|
||||
enum TipoDocumento: string
|
||||
{
|
||||
case ChequesDia = 'Cheques al Dia';
|
||||
case TarjetasCredito = 'Tarjetas de Credito';
|
||||
case TarjetasDebito = 'Tarjetas de Debito';
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum TipoEgreso: string
|
||||
{
|
||||
case FacturaMateriaPrima = 'Factura Materia Prima';
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum TipoGastoCuentaCorriente: string
|
||||
{
|
||||
case Factura = 'Factura';
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum TipoIngreso: string
|
||||
{
|
||||
case BoletasFiscales = 'Boletas Fiscales';
|
||||
|
||||
13
app/Livewire/Cajas/Index.php
Normal file
13
app/Livewire/Cajas/Index.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Livewire\Cajas;
|
||||
|
||||
use Livewire\Component;
|
||||
|
||||
class Index extends Component
|
||||
{
|
||||
public function render()
|
||||
{
|
||||
return view('livewire.cajas.index');
|
||||
}
|
||||
}
|
||||
13
app/Livewire/Configuracion/Index.php
Normal file
13
app/Livewire/Configuracion/Index.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Livewire\Configuracion;
|
||||
|
||||
use Livewire\Component;
|
||||
|
||||
class Index extends Component
|
||||
{
|
||||
public function render()
|
||||
{
|
||||
return view('livewire.configuracion.index');
|
||||
}
|
||||
}
|
||||
13
app/Livewire/Home/Index.php
Normal file
13
app/Livewire/Home/Index.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Livewire\Home;
|
||||
|
||||
use Livewire\Component;
|
||||
|
||||
class Index extends Component
|
||||
{
|
||||
public function render()
|
||||
{
|
||||
return view('livewire.home.index');
|
||||
}
|
||||
}
|
||||
13
app/Livewire/Reportes/Index.php
Normal file
13
app/Livewire/Reportes/Index.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Livewire\Reportes;
|
||||
|
||||
use Livewire\Component;
|
||||
|
||||
class Index extends Component
|
||||
{
|
||||
public function render()
|
||||
{
|
||||
return view('livewire.reportes.index');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user