2019-07-04 14:55:05 +10:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class Tax extends Model
|
|
|
|
{
|
2021-12-17 14:59:55 +11:00
|
|
|
public $timestamps = FALSE;
|
2021-06-30 14:39:33 +10:00
|
|
|
|
2021-12-17 14:59:55 +11:00
|
|
|
/* RELATIONS */
|
|
|
|
|
|
|
|
public function country()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Country::class);
|
|
|
|
}
|
2019-07-04 14:55:05 +10:00
|
|
|
}
|