Created
January 26, 2018 11:23
-
-
Save zabaala/3ac3c543c10ff92509ca82dd6b36a1b8 to your computer and use it in GitHub Desktop.
Direct access to repository
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class DoctorsController extends Controller | |
| { | |
| public function index(DoctorRepositoryInterface $doctorRepository) | |
| { | |
| $doctors = $doctorRepository->getAll('id', 'desc'); | |
| $total = $doctors->total(); | |
| // ... | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment