dbms/app/Models/Customer/CustomerModel.php
2025-06-25 14:53:10 +09:00

16 lines
240 B
PHP

<?php
namespace App\Models\Customer;
use App\Models\CommonModel;
abstract class CustomerModel extends CommonModel
{
protected $useSoftDeletes = true;
protected function __construct()
{
parent::__construct();
}
}