<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Order_tax extends Model
{
// use SoftDeletes;
protected $table = 'order_tax';
protected $fillable = [
'order_id', 'tax_name', 'tax_price', 'country_code' , 'tax_rate'
];
}