14 lines
264 B
PHP
14 lines
264 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Riwayat extends Model
|
|
{
|
|
protected $table = "riwayatjawaban";
|
|
protected $fillable = [
|
|
'id', 'nofoto', 'jawaban', 'inputor', 'keterangan', 'verifikasi', 'created_at'
|
|
];
|
|
}
|