IMMREX7

aku nok ndi : /home/spdtg/www/schoolmis/app/
File Up :
aku nok ndi : /home/spdtg/www/schoolmis/app/StoreLocation.php

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class StoreLocation extends Model
{
    protected $primaryKey = 'idStoreLocation';
    protected $table = 'store_locations';
    protected $fillable = ['locationName'];
    
    
    public function sublocations() {
        return $this->hasMany(SubLocation::class, 'idStoreLocation', 'idStoreLocation');
    }
}

Copyright © 2021 - 2025 IMMREX7