26 lines
665 B
PHP
26 lines
665 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', // FAX番号
|
|
'company_image_path', // 会社ロゴ画像パス(任意)
|
|
|
|
];
|
|
}
|