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;
|
|
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-24 12:43:44 +02:00
|
|
|
public function statement()
|
2019-12-31 08:59:12 +11:00
|
|
|
{
|
2021-08-24 12:43:44 +02:00
|
|
|
|
2019-12-31 08:59:12 +11:00
|
|
|
}
|
|
|
|
|
}
|