Memperbarui UI/UX

This commit is contained in:
2026-06-07 23:32:06 +07:00
parent f7479770e6
commit 76a8782409
47 changed files with 4378 additions and 685 deletions
+29
View File
@@ -0,0 +1,29 @@
<?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');
}
}