mirror of
https://github.com/rekywhyd/WebGIS_PengentasanKemiskinan.git
synced 2026-07-09 19:03:08 +00:00
30 lines
556 B
PHP
30 lines
556 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class LogDistribusi extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'log_distribusi';
|
|
|
|
protected $fillable = [
|
|
'id_penerima',
|
|
'tanggal_diterima',
|
|
'status',
|
|
'foto_penyerahan',
|
|
];
|
|
|
|
protected $casts = [
|
|
'tanggal_diterima' => 'datetime',
|
|
];
|
|
|
|
public function penerimaBantuan()
|
|
{
|
|
return $this->belongsTo(PenerimaBantuan::class, 'id_penerima');
|
|
}
|
|
}
|