IMMREX7

aku nok ndi : /home/spdtg/www/gomygps/app/
File Up :
aku nok ndi : /home/spdtg/www/gomygps/app/Vehicle.php

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Vehicle extends Model {

    protected $primaryKey = 'idVehicle';
    protected $fillable = ['idCompany','idBranch','vehicleNo','chesisNo','engineNo'];

    public function company() {
        return $this->belongsTo(Company::class,'idCompany','idCompany');
    }
    
    public function branch() {
        return $this->belongsTo(Branch::class,'idBranch','idBranch');
    }
}

Copyright © 2021 - 2025 IMMREX7