You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wx.sstbc.com/app/Models/ScheduleOverviewLocation.php

15 lines
279 B

<?php
namespace App\Models;
class ScheduleOverviewLocation extends SoftDeletesModel
{
protected $table = 'schedule_overview_locations';
public function modules()
{
return $this->hasMany(ScheduleOverviewScheduleModule::class, 'location_id', 'id');
}
}