2019-02-04 23:06:19 +11:00
|
|
|
<?php
|
2019-05-11 13:32:07 +10:00
|
|
|
/**
|
2020-09-06 19:38:10 +10:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
|
*
|
2021-01-04 08:54:54 +11:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
2021-06-16 16:58:16 +10:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 13:32:07 +10:00
|
|
|
*/
|
2019-02-04 23:06:19 +11:00
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
|
|
|
|
/**
|
2020-09-06 19:38:10 +10:00
|
|
|
* Class ClientStatementController.
|
2019-02-04 23:06:19 +11:00
|
|
|
*/
|
2019-03-29 08:34:58 +11:00
|
|
|
class ClientStatementController extends BaseController
|
2019-02-04 23:06:19 +11:00
|
|
|
{
|
2019-12-31 08:59:12 +11:00
|
|
|
public function __construct()
|
2019-03-29 08:34:58 +11:00
|
|
|
{
|
|
|
|
|
parent::__construct();
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 08:59:12 +11:00
|
|
|
/**
|
|
|
|
|
* Displays a client statement view for a given
|
|
|
|
|
* client_id.
|
2020-10-28 21:10:49 +11:00
|
|
|
* @return void
|
2019-12-31 08:59:12 +11:00
|
|
|
*/
|
|
|
|
|
public function show()
|
|
|
|
|
{
|
|
|
|
|
}
|
2019-02-04 23:06:19 +11:00
|
|
|
|
2019-12-31 08:59:12 +11:00
|
|
|
/**
|
|
|
|
|
* Updates the show view data dependent on
|
2020-09-06 19:38:10 +10:00
|
|
|
* configured variables.
|
2020-10-28 21:10:49 +11:00
|
|
|
* @return void
|
2019-12-31 08:59:12 +11:00
|
|
|
*/
|
|
|
|
|
public function update()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|