aku nok ndi : /home/spdtg/www/schoolmis/app/ |
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'); } }