mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
Scaffold StatementController & update client.php
This commit is contained in:
parent
6102b13e7a
commit
9dececf08b
20
app/Http/Controllers/ClientPortal/StatementController.php
Normal file
20
app/Http/Controllers/ClientPortal/StatementController.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Invoice Ninja (https://invoiceninja.com).
|
||||
*
|
||||
* @link https://github.com/invoiceninja/invoiceninja source repository
|
||||
*
|
||||
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
||||
*
|
||||
* @license https://www.elastic.co/licensing/elastic-license
|
||||
*/
|
||||
|
||||
namespace App\Http\Controllers\ClientPortal;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
|
||||
class StatementController extends Controller
|
||||
{
|
||||
//
|
||||
}
|
@ -80,6 +80,8 @@ Route::group(['middleware' => ['auth:contact', 'locale', 'check_client_existence
|
||||
|
||||
Route::resource('tasks', 'ClientPortal\TaskController')->only(['index']);
|
||||
|
||||
Route::resource('statement', 'ClientPortal\StatementController');
|
||||
|
||||
Route::post('upload', 'ClientPortal\UploadController')->name('upload.store');
|
||||
Route::get('logout', 'Auth\ContactLoginController@logout')->name('logout');
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user