1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00
invoiceninja/app/Http/Controllers/ClientStatementController.php

39 lines
510 B
PHP
Raw Normal View History

<?php
namespace App\Http\Controllers;
/**
* Class ClientStatementController
* @package App\Http\Controllers
*/
2019-03-28 22:34:58 +01:00
class ClientStatementController extends BaseController
{
2019-03-28 22:34:58 +01:00
public function __construct()
{
parent::__construct();
}
/**
* Displays a client statement view for a given
* client_id.
* @return view
*/
public function show()
{
}
/**
* Updates the show view data dependent on
* configured variables
* @return json
*/
public function update()
{
}
}