add datatbles for invoices, add pdf icon, refactor icons components, add autocomplete on search, adapt searching to meilisearch
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
Route::prefix('Clients')->name('Customers.')->group(function () {
|
||||
Route::get('show/{id}', 'CustomerController@show')->name('show');
|
||||
Route::get('profile/{id?}', 'CustomerController@profile')->name('profile');
|
||||
Route::get('profile', 'CustomerController@profile')->name('profile');
|
||||
Route::get('modalProfile/{id?}', 'CustomerController@modalProfile')->name('modalProfile');
|
||||
Route::get('edit', 'CustomerController@edit')->name('edit');
|
||||
Route::post('storeProfileAjax', 'CustomerController@storeProfileAjax')->name('storeProfileAjax');
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
<?php
|
||||
|
||||
Route::prefix('Factures')->name('Invoices.')->group(function () {
|
||||
Route::get('show/{uuid?}', 'InvoiceController@show')->name('show');
|
||||
Route::any('', 'InvoiceController@index')->name('index');
|
||||
Route::get('view/{uuid?}', 'InvoiceController@view')->name('view');
|
||||
Route::get('pdf/{uuid?}', 'InvoiceController@pdf')->name('pdf');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user