2018-08-31 06:03:11 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Webkul\Core\Models;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2018-09-04 09:14:32 +00:00
|
|
|
use Webkul\Core\Models\TaxCategory;
|
|
|
|
|
use Webkul\Core\Models\TaxRate;
|
2018-08-31 06:03:11 +00:00
|
|
|
|
|
|
|
|
class TaxMap extends Model
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* The attributes that are mass assignable.
|
|
|
|
|
*
|
|
|
|
|
* @var array
|
|
|
|
|
*/
|
|
|
|
|
|
2018-09-04 09:14:32 +00:00
|
|
|
protected $table = 'tax_categories_tax_rates';
|
2018-08-31 06:03:11 +00:00
|
|
|
|
|
|
|
|
protected $fillable = [
|
2018-09-04 09:14:32 +00:00
|
|
|
'tax_category_id', 'tax_rate_id'
|
2018-08-31 06:03:11 +00:00
|
|
|
];
|
2018-09-04 09:14:32 +00:00
|
|
|
|
2018-08-31 06:03:11 +00:00
|
|
|
}
|