CRM/webman/app/model/Customer.php

30 lines
477 B
PHP
Raw Normal View History

2025-03-11 13:34:12 +08:00
<?php
namespace app\model;
use Illuminate\Database\Eloquent\Model;
class Customer extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'customer';
/**
* The primary key associated with the table.
*
* @var string
*/
protected $primaryKey = 'id';
/**
* Indicates if the model should be timestamped.
*
* @var bool
*/
public $timestamps = false;
}