28 lines
440 B
PHP
28 lines
440 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Cobro extends Model
|
|
{
|
|
protected $fillable = [
|
|
'referencia_type',
|
|
'referencia_id',
|
|
'user_id',
|
|
'cantidad',
|
|
'valor',
|
|
'notas',
|
|
];
|
|
|
|
public function referencia()
|
|
{
|
|
return $this->morphTo();
|
|
}
|
|
|
|
public function usuario()
|
|
{
|
|
return $this->belongsTo(User::class, 'user_id');
|
|
}
|
|
}
|