krgm.so-manager-dev.com/app/Models/InvSetting.php
kin.rinzen 70bfd18204
All checks were successful
Deploy preview (main_kin) / deploy (push) Successful in 13s
画面追加(mail_templates/inv_settings)
2025-08-27 17:16:05 +09:00

17 lines
347 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class InvSetting extends Model
{
protected $table = 'inv_setting';
protected $primaryKey = 'seq';
public $timestamps = true;
protected $fillable = [
't_number', 't_name', 'zipcode', 'adrs', 'bldg', 'tel_num', 'fax_num', 'company_image_path',
];
}