File: /var/www/html/sarvodayahospital/app/Models/InterlinkModule.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class InterlinkModule extends Model
{
protected $table = 'components_interlink_section_cps_interlinks';
public function interlinks()
{
return $this
->hasManyThrough(CPSInterlink::class, InterlinkModuleComponent::class,
'components_interlink_section_cps_interlink_id', 'id', 'id', 'component_id')
->where('component_type', 'components_interlinks_interlinks')
->where('field', 'Interlinks')->orderBy('order');
}
}