You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

37 lines
843 B

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use App\Scopes\ZoneScope;
class WithdrawRequest extends Model
{
use HasFactory;
protected $casts = [
'amount'=>'float',
'delivery_man_id'=>'integer',
'withdrawal_method_id'=>'integer',
'approved'=>'integer',
'admin_id'=>'integer',
'vendor_id'=>'integer',
];
public function vendor(){
return $this->belongsTo(Vendor::class);
}
public function method(){
return $this->belongsTo(WithdrawalMethod::class,'withdrawal_method_id');
}
public function deliveryman(){
return $this->belongsTo(DeliveryMan::class);
}
protected static function booted()
{
static::addGlobalScope(new ZoneScope);
}
}