1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/routes/client.php

42 lines
2.7 KiB
PHP
Raw Normal View History

<?php
2019-08-05 01:31:55 +02:00
Route::get('client', 'Auth\ContactLoginController@showLoginForm')->name('client.login'); //catch all
2019-08-05 00:17:46 +02:00
Route::get('client/login', 'Auth\ContactLoginController@showLoginForm')->name('client.login');
Route::post('client/login', 'Auth\ContactLoginController@login')->name('client.login.submit');
2019-07-17 06:52:54 +02:00
Route::get('client/password/reset', 'Auth\ContactForgotPasswordController@showLinkRequestForm')->name('client.password.request');
Route::post('client/password/email', 'Auth\ContactForgotPasswordController@sendResetLinkEmail')->name('client.password.email');
Route::get('client/password/reset/{token}', 'Auth\ContactResetPasswordController@showResetForm')->name('client.password.reset');
Route::post('client/password/reset', 'Auth\ContactResetPasswordController@reset')->name('client.password.update');
2019-07-17 06:15:25 +02:00
//todo implement domain DB
//Route::group(['middleware' => ['auth:contact', 'domain_db'], 'prefix' => 'client', 'as' => 'client.'], function () {
Route::group(['middleware' => ['auth:contact'], 'prefix' => 'client', 'as' => 'client.'], function () {
Route::get('dashboard', 'ClientPortal\DashboardController@index')->name('dashboard'); // name = (dashboard. index / create / show / update / destroy / edit
2019-08-15 13:10:02 +02:00
Route::get('invoices', 'ClientPortal\InvoiceController@index')->name('invoices.index');
2019-08-14 12:23:44 +02:00
Route::post('invoices/payment', 'ClientPortal\InvoiceController@bulk')->name('invoices.bulk');
2019-08-29 06:07:04 +02:00
Route::get('invoice/{invoice}', 'ClientPortal\InvoiceController@show')->name('invoice.show');
Route::get('invoice/{invoice_invitation}', 'ClientPortal\InvoiceController@show')->name('invoice.show_invitation');
2019-08-15 13:10:02 +02:00
Route::get('recurring_invoices', 'ClientPortal\RecurringInvoiceController@index')->name('recurring_invoices.index');
2019-08-16 07:20:28 +02:00
Route::get('payments', 'ClientPortal\PaymentController@index')->name('payments.index');
2019-08-15 13:10:02 +02:00
2019-08-02 02:31:48 +02:00
Route::get('profile/{client_contact}/edit', 'ClientPortal\ProfileController@edit')->name('profile.edit');
2019-08-13 01:56:46 +02:00
Route::put('profile/{client_contact}/edit', 'ClientPortal\ProfileController@update')->name('profile.update');
2019-08-13 23:41:02 +02:00
Route::put('profile/{client_contact}/edit_client', 'ClientPortal\ProfileController@updateClient')->name('profile.edit_client');
2019-08-14 02:15:21 +02:00
Route::put('profile/{client_contact}/localization', 'ClientPortal\ProfileController@updateClientLocalization')->name('profile.edit_localization');
2019-08-22 00:34:20 +02:00
Route::resource('payment_methods', 'ClientPortal\PaymentMethodController');// name = (payment_methods. index / create / show / update / destroy / edit
2019-08-07 02:44:38 +02:00
Route::post('document', 'ClientPortal\DocumentController@store')->name('document.store');
2019-08-08 13:07:26 +02:00
Route::delete('document', 'ClientPortal\DocumentController@destroy')->name('document.destroy');
2019-08-07 02:44:38 +02:00
Route::get('logout', 'Auth\ContactLoginController@logout')->name('logout');
});
Route::fallback('BaseController@notFoundClient');