ok
Direktori : /proc/thread-self/root/proc/self/root/home2/selectio/www/a1tex.in/app/Model/ |
Current File : //proc/thread-self/root/proc/self/root/home2/selectio/www/a1tex.in/app/Model/FlashDealProduct.php |
<?php namespace App\Model; use Illuminate\Database\Eloquent\Model; class FlashDealProduct extends Model { protected $casts = [ 'product_id' => 'integer', 'discount' => 'float', 'flash_deal_id' => 'integer', 'created_at' => 'datetime', 'updated_at' => 'datetime', ]; public function product() { return $this->belongsTo(Product::class); } }