sim_rs/app/Models/TransaksiDetail.php
Muhammad Thoriq 7966b1f95d Set Project
2025-04-27 20:58:13 +07:00

19 lines
274 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TransaksiDetail extends Model
{
//
protected $fillable = [
'id',
'transaksi_id',
'tindakan_id',
'tarif',
'created_at',
'updated_at'
];
}