49 lines
962 B
PHP
49 lines
962 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
|
|
class Venta extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'cliente_id',
|
|
'total',
|
|
'tipo_pago',
|
|
'estado',
|
|
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $casts = [
|
|
'id' => 'integer',
|
|
'fecha' => 'datetime',
|
|
'cliente_id' => 'integer',
|
|
'total' => 'decimal:2',
|
|
];
|
|
|
|
public function cliente(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Cliente::class);
|
|
}
|
|
|
|
public function detalles(): HasMany
|
|
{
|
|
return $this->hasMany(DetalleVenta::class);
|
|
}
|
|
}
|