paginator refactoring and implementation into the routes

This commit is contained in:
Čarodej
2022-05-24 18:19:34 +02:00
parent 31218240ae
commit b9975de700
61 changed files with 1215 additions and 829 deletions

View File

@@ -103,7 +103,7 @@ class StoreAppSettingsController extends Controller
}
return response()->json([
'type' => 'success',
'type' => 'success',
'message' => 'The app settings was set successfully',
]);
}

View File

@@ -4,7 +4,6 @@ namespace Domain\SetupWizard\Controllers;
use DB;
use Artisan;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Response;
use App\Http\Controllers\Controller;
use Doctrine\DBAL\Driver\PDOException;
use Symfony\Component\HttpKernel\Exception\HttpException;

View File

@@ -195,7 +195,7 @@ class StoreEnvironmentSettingsController extends Controller
}
return response()->json([
'type' => 'success',
'type' => 'success',
'message' => 'The environment was set successfully',
]);
}