fix route typo when restoring trash

This commit is contained in:
Kode
2019-07-14 09:46:10 +01:00
parent 9e1bb6c075
commit 60e20c4023

View File

@@ -306,7 +306,7 @@ class ItemController extends Controller
->where('id', $id)
->restore();
$route = route('items.inded', []);
$route = route('items.index', []);
return redirect($route)
->with('success',__('app.alert.success.item_restored'));
}