D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
hms.dentostock.com
/
app
/
Queries
/
Filename :
PathologyTestDataTable.php
back
Copy
<?php namespace App\Queries; use App\Models\PathologyTest; use Illuminate\Database\Query\Builder; /** * Class PathologyTestDataTable. */ class PathologyTestDataTable { /** * @return PathologyTest|Builder */ public function get() { /** @var PathologyTest $query */ $query = PathologyTest::with(['pathologycategory', 'chargecategory'])->select('pathology_tests.*'); return $query; } }