mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
49 lines
846 B
PHP
49 lines
846 B
PHP
<?php
|
|
namespace Crater;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Crater\User;
|
|
use Crater\Country;
|
|
use Crater\State;
|
|
use Crater\City;
|
|
|
|
class Address extends Model
|
|
{
|
|
const BILLING_TYPE = 'BILLING';
|
|
const SHIPPING_TYPE = 'SHIPPING';
|
|
|
|
protected $fillable = [
|
|
'name',
|
|
'address_street_1',
|
|
'address_street_2',
|
|
'city_id',
|
|
'state_id',
|
|
'country_id',
|
|
'zip',
|
|
'phone',
|
|
'fax',
|
|
'type',
|
|
'user_id'
|
|
];
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
public function country()
|
|
{
|
|
return $this->belongsTo(Country::class);
|
|
}
|
|
|
|
public function state()
|
|
{
|
|
return $this->belongsTo(State::class);
|
|
}
|
|
|
|
public function city()
|
|
{
|
|
return $this->belongsTo(City::class);
|
|
}
|
|
}
|