Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/dabbawali.sizzlingcafe.co.in/app/Models/
Upload File :
Current File : /home/users/unlimited/www/dabbawali.sizzlingcafe.co.in/app/Models/OrderAddress.php

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class OrderAddress extends Model
{
    use HasFactory;

    protected $table = "order_addresses";
    protected $fillable = [
        'order_id',
        'user_id',
        'label',
        'address',
        'apartment',
        'latitude',
        'longitude'
    ];

    protected $casts = [
        'id'        => 'integer',
        'order_id'  => 'integer',
        'user_id'   => 'integer',
        'label'     => 'string',
        'address'   => 'string',
        'apartment' => 'string',
        'latitude'  => 'string',
        'longitude' => 'string',
    ];

    public function order()
    {
        return $this->belongsTo(Order::class, 'order_id', 'id');
    }

    public function user()
    {
        return $this->belongsTo(User::class, 'user_id', 'id')->withTrashed();
    }
}