ok
Direktori : /home2/selectio/www/3-idiots/app/Model/ |
Current File : //home2/selectio/www/3-idiots/app/Model/DeliverymanNotification.php |
<?php namespace App\Model; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class DeliverymanNotification extends Model { use HasFactory; public function order() { return $this->belongsTo(Order::class,'order_id'); } }