ok
Direktori : /home2/selectio/public_html/myclassicfit.com/app/Model/ |
Current File : //home2/selectio/public_html/myclassicfit.com/app/Model/DeliverymanWallet.php |
<?php namespace App\Model; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class DeliverymanWallet extends Model { use HasFactory; protected $guarded = []; public function delivery_man() { return $this->belongsTo(DeliveryMan::class, 'delivery_man_id'); } }