ok

Mini Shell

Direktori : /home2/selectio/public_html/3idiotsgadgetstore.in/app/Model/
Upload File :
Current File : //home2/selectio/public_html/3idiotsgadgetstore.in/app/Model/Cart.php

<?php

namespace App\Model;

use Illuminate\Database\Eloquent\Model;

class Cart extends Model
{

    protected $casts = [
        'price' => 'float',
        'discount' => 'float',
        'tax' => 'float',
        'seller_id' => 'integer',
        'quantity' => 'integer',
        'shipping_cost'=>'float'
    ];

    public function cart_shipping(){
        return $this->hasOne(CartShipping::class,'cart_group_id','cart_group_id');
    }

    public function product()
    {
        return $this->belongsTo(Product::class)->where('status', 1);
    }
    
}

Zerion Mini Shell 1.0