mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
1ad19734e3
* Clean up Client Show * Working on Show Client menu action * working on client view permissions * Finishing up Client Statement View * Workig on client settings * add mix manifest
31 lines
424 B
PHP
31 lines
424 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
/**
|
|
* Class ClientStatementController
|
|
* @package App\Http\Controllers
|
|
*/
|
|
class ClientStatementController extends Controller
|
|
{
|
|
/**
|
|
* 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()
|
|
{
|
|
|
|
}
|
|
|
|
} |