BUB-4 Ordinamento ascendente per data dell'export dei movimenti
This commit is contained in:
parent
4e5523d95c
commit
eebb53dbcb
@ -1,2 +1,2 @@
|
||||
eclipse.preferences.version=1
|
||||
include_path=0;/BuBoFamily
|
||||
include_path=0;/buboFamily
|
||||
|
@ -106,6 +106,7 @@ class MovimentiController extends Controller
|
||||
->join('categories','movimentis.mov_fk_categoria','=','categories.id')
|
||||
->join('tags','movimentis.mov_fk_tags','=','tags.id')
|
||||
->selectRaw('mov_data AS Data,cat_name AS Categoria,tag_name AS Tag,mov_descrizione AS Descrizione,mov_importo AS Importo')
|
||||
->orderBy('Data','asc')
|
||||
->get();
|
||||
foreach ($movimenti as $movimento)
|
||||
{
|
||||
|
@ -21,6 +21,7 @@ Route::get('/', function () {
|
||||
});
|
||||
|
||||
|
||||
Auth::routes(['register' => false]);
|
||||
// Auth::routes(['register' => false]); // Production only
|
||||
Auth::routes();
|
||||
Route::get('/calendar', [TagController::class,'calendartest'])->name('calendar');
|
||||
Route::get('/home', [App\Http\Controllers\HomeController::class, 'index'])->name('home');
|
||||
|
Loading…
Reference in New Issue
Block a user