Files
api_arrahn/app/Customer.php
T
Zakwan Hamdan 5c7bbe3a19 initial commit
2020-10-19 10:28:31 +08:00

26 lines
403 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Customer extends Model
{
protected $table = 'customer';
/**
* The attributes that are mass assignable.
*
* @var array
*/
// protected $fillable = [
// ];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}