invoiceninja/app/Services/ActivityService.php

50 lines
1.1 KiB
PHP
Raw Permalink Normal View History

2017-01-30 21:40:43 +02:00
<?php
namespace App\Services;
2015-11-06 00:37:04 +02:00
use App\Models\Client;
2016-05-23 19:52:20 +03:00
use App\Ninja\Datatables\ActivityDatatable;
2017-01-30 21:40:43 +02:00
use App\Ninja\Repositories\ActivityRepository;
2015-11-06 00:37:04 +02:00
/**
2017-01-30 21:40:43 +02:00
* Class ActivityService.
*/
2015-11-06 00:37:04 +02:00
class ActivityService extends BaseService
{
/**
* @var ActivityRepository
*/
2015-11-06 00:37:04 +02:00
protected $activityRepo;
/**
* @var DatatableService
*/
2015-11-06 00:37:04 +02:00
protected $datatableService;
/**
* ActivityService constructor.
*
* @param ActivityRepository $activityRepo
2017-01-30 21:40:43 +02:00
* @param DatatableService $datatableService
*/
2015-11-06 00:37:04 +02:00
public function __construct(ActivityRepository $activityRepo, DatatableService $datatableService)
{
$this->activityRepo = $activityRepo;
$this->datatableService = $datatableService;
}
/**
* @param null $clientPublicId
2017-01-30 21:40:43 +02:00
*
* @return \Illuminate\Http\JsonResponse
*/
2015-11-06 00:37:04 +02:00
public function getDatatable($clientPublicId = null)
{
2015-11-16 14:30:44 +02:00
$clientId = Client::getPrivateId($clientPublicId);
$query = $this->activityRepo->findByClientId($clientId);
2015-11-06 00:37:04 +02:00
2016-05-23 19:52:20 +03:00
return $this->datatableService->createDatatable(new ActivityDatatable(false), $query);
2015-11-06 00:37:04 +02:00
}
2016-05-23 19:52:20 +03:00
}