| Current Path : /home/zada/www/app/Models/ |
| Current File : /home/zada/www/app/Models/DeliveryBoy.php |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use App\Traits\PreventDemoModeChanges;
class DeliveryBoy extends Model
{
use PreventDemoModeChanges;
public function user(){
return $this->belongsTo(User::class);
}
}