Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
painelshopsuaboaforma.meumercado.app
/
painelsexshoptentacao.meumercado.app
/
app
/
Model
/
Editing: OrderDetail.php
<?php namespace App\Model; use Illuminate\Database\Eloquent\Model; class OrderDetail extends Model { protected $casts = [ 'product_id' => 'integer', 'order_id' => 'integer', 'price' => 'float', 'discount_on_product' => 'float', 'quantity' => 'integer', 'tax_amount' => 'float', 'created_at' => 'datetime', 'updated_at' => 'datetime' ]; public function product() { return $this->belongsTo(Product::class, 'product_id'); } public function order() { return $this->belongsTo(Order::class, 'order_id'); } public function review() { return $this->belongsTo(Review::class, 'order_id','order_id'); } }
Save
Cancel