feat: add fuel price classification markers and responsive search UI improvements
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (8.3) (push) Has been cancelled
tests / ci (8.4) (push) Has been cancelled
tests / ci (8.5) (push) Has been cancelled

- Move map pin icon to right side of input with adjusted spacing
- Change button styling from accent to primary color
This commit is contained in:
Ovidiu U
2026-04-11 20:51:07 +01:00
parent 951bb0b98d
commit a969c1b347
5 changed files with 136 additions and 39 deletions

View File

@@ -5,6 +5,7 @@ namespace App\Http\Middleware;
use Closure;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use Laravel\Sanctum\Http\Middleware\EnsureFrontendRequestsAreStateful;
use Symfony\Component\HttpFoundation\Response;
final class VerifyApiKey
@@ -20,6 +21,10 @@ final class VerifyApiKey
return $next($request);
}
if (EnsureFrontendRequestsAreStateful::fromFrontend($request)) {
return $next($request);
}
if ($request->header('X-Api-Key') !== config('app.api_secret_key')) {
abort(403);
}