clientRepo = $clientRepo; } public function index() { $clients = Client::scope()->get()->toArray(); return Response::json(array( 'error' => false, 'clients' => $clients), 200 ); } }