24 lines
473 B
PHP
Executable File
24 lines
473 B
PHP
Executable File
<?php
|
|
|
|
namespace Webkul\Core\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Webkul\Core\Models\TaxCategory;
|
|
use Webkul\Core\Models\TaxRate;
|
|
use Webkul\Core\Contracts\TaxMap as TaxMapContract;
|
|
|
|
class TaxMap extends Model implements TaxMapContract
|
|
{
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
|
|
protected $table = 'tax_categories_tax_rates';
|
|
|
|
protected $fillable = [
|
|
'tax_category_id', 'tax_rate_id'
|
|
];
|
|
|
|
} |