13 lines
321 B
PHP
13 lines
321 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Penyata extends Model
|
|
{
|
|
protected $table = 'penyata'; // optional if table name matches model
|
|
protected $primaryKey = 'id'; // optional if primary key is 'id'
|
|
public $timestamps = false; // set to true if table has created_at/updated_at
|
|
}
|