add datatbles for invoices, add pdf icon, refactor icons components, add autocomplete on search, adapt searching to meilisearch

This commit is contained in:
ludo
2024-02-04 02:51:38 +01:00
parent 067532b6fc
commit 4c6f9b3b61
39 changed files with 503 additions and 211 deletions

View File

@@ -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');
});