Shell B4ckd00r
Current Dir :
/
home
/
u789730693
/
domains
/
piorasplash.com
/
public_html
/
app
/
Models
/
Home
Upload
Create Dir
Create File
Curl
Current File : /home/u789730693/domains/piorasplash.com/public_html/app/Models/ProductTax.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\SoftDeletes; use Illuminate\Database\Eloquent\Model; class ProductTax extends Model { use HasFactory,SoftDeletes; protected $table = "product_taxes"; protected $fillable = ['product_id', 'tax_id']; protected $casts = [ 'id' => 'integer', 'product_id' => 'integer', 'tax_id' => 'integer', ]; public function tax(): \Illuminate\Database\Eloquent\Relations\BelongsTo { return $this->belongsTo(Tax::class); } }
v.01