19 lines
367 B
PHP
19 lines
367 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Enums\TipoGastoCuentaCorriente;
|
|
use Illuminate\Database\Eloquent\Concerns\HasUlids;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class GastoCuentaCorriente extends Model
|
|
{
|
|
use HasUlids;
|
|
|
|
protected $table = 'gastos_cuenta_corriente';
|
|
|
|
protected $casts = [
|
|
'tipo_gasto' => TipoGastoCuentaCorriente::class,
|
|
];
|
|
}
|