krgm.so-manager-dev.com/app/Models/InvSetting.php
shichou.u 5e2f92f92a
All checks were successful
Deploy main / deploy (push) Successful in 23s
インボイス設定作成
2026-02-05 21:35:36 +09:00

38 lines
985 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 = [
'seq', // シーケンス
'management_id', // 運営元ID
't_number', // 適格事業者番号
't_name', // 事業者名
'zipcode', // 郵便番号
'adrs', // 住所
'bldg', // 建物名
'tel_num', // 電話番号
'fax_num', // FAX番号
'company_image_path', // 会社ロゴ画像パス
];
/**
* キャストする属性
*
* @var array
*/
protected $casts = [
'seq' => 'integer',
'management_id' => 'integer',
'created_at' => 'datetime',
'updated_at' => 'datetime'
];
}