2019-02-04 13:06:19 +01:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-02-04 13:06:19 +01:00
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class ClientStatementController
|
|
|
|
* @package App\Http\Controllers
|
|
|
|
*/
|
2019-03-28 22:34:58 +01:00
|
|
|
class ClientStatementController extends BaseController
|
2019-02-04 13:06:19 +01:00
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
public function __construct()
|
2019-03-28 22:34:58 +01:00
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
/**
|
|
|
|
* Displays a client statement view for a given
|
|
|
|
* client_id.
|
|
|
|
* @return view
|
|
|
|
*/
|
|
|
|
public function show()
|
|
|
|
{
|
|
|
|
}
|
2019-02-04 13:06:19 +01:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
/**
|
|
|
|
* Updates the show view data dependent on
|
|
|
|
* configured variables
|
|
|
|
* @return json
|
|
|
|
*/
|
|
|
|
public function update()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|