mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 12:33:56 +00:00
31 lines
560 B
PHP
31 lines
560 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
/**
|
|
* Class Company
|
|
* @package App\Models
|
|
* @version August 4, 2020, 4:36 am
|
|
*
|
|
* @property \App\Models\Country country_id
|
|
* @property \App\Models\State state_id
|
|
* @property \App\Models\District district_id
|
|
* @property string postcode
|
|
* @property string street_one
|
|
* @property string street_two
|
|
* @property integer billing_type
|
|
*/
|
|
class Company extends AbstractModel
|
|
{
|
|
use SoftDeletes;
|
|
|
|
protected $table = 'companies';
|
|
|
|
protected $dates = ['deleted_at'];
|
|
}
|
|
|
|
|
|
|