PrklMateri.php 250 Bytes
<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class PrklMateri extends Model
{
    //
    protected $table = 'prkl_materi';
    protected $primaryKey = 'materi_id';

    protected $cast = [
        'minggu_ke' => 'integer'
    ];
}