invoiceninja/app/controllers/ClientApiController.php
2014-05-13 22:48:02 +03:00

31 lines
613 B
PHP

<?php
use ninja\repositories\ClientRepository;
use Client;
class ClientApiController extends \BaseController {
protected $clientRepo;
public function __construct(ClientRepository $clientRepo)
{
parent::__construct();
$this->clientRepo = $clientRepo;
}
public function index()
{
$clients = Client::scope()->get();
$response = [
'status' => 200,
'error' => false,
'clients' => $clients->toArray()
];
$response = json_encode($response, JSON_PRETTY_PRINT);
return Response::make($response, 200, ['Content-Type' => 'application/json']);
}
}