Rename Offline.twig -> offline.twig

This commit is contained in:
Lorenzo Breda 2021-09-13 21:07:54 +02:00
parent a815d7b3e2
commit 232cdd6901
2 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ Route::group(
Route::group(
['middleware' => 'binders-only'],
static function () {
Route::get('offline', fn () => view('errors.Offline'));
Route::get('offline', fn () => view('errors.offline'));
}
);