Skip to content

Instantly share code, notes, and snippets.

@zabaala
Created January 26, 2018 11:23
Show Gist options
  • Select an option

  • Save zabaala/3ac3c543c10ff92509ca82dd6b36a1b8 to your computer and use it in GitHub Desktop.

Select an option

Save zabaala/3ac3c543c10ff92509ca82dd6b36a1b8 to your computer and use it in GitHub Desktop.
Direct access to repository
<?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