File: /var/www/html/sarvodayahospital/app/Models/Phc.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Phc extends Model
{
// protected $with = ['phcPhoto'];
protected $table = 'phcs';
// public function phcPhoto()
// {
// return $this->hasOneThrough(
// Media::class,
// MediaMorph::class,
// 'related_id',
// 'id',
// 'id',
// 'upload_file_id'
// )
// ->where('related_type', 'phps')
// ->where('field', 'ImageIcon')
// ->orderBy('order')
// ->select('upload_file_morph.id', 'name', 'url');
// }
}