Files
fuel-price/app/Filament/Resources/Searches/Pages/ListSearches.php
Ovidiu U 7101ed3550
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
feat: add postcode resolution to /api/stations and Filament SearchResource
Extends NearbyStationsRequest to accept `postcode` (full or outcode) as an alternative to lat/lng. PostcodeService resolves it via postcodes.io and falls through to coordinates. Also adds SearchResource to the Filament admin panel for viewing logged search activity with fuel type filter and price/distance stats columns. Includes SQLite GREATEST/LEAST function polyfills in AppServiceProvider for test compatibility.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-05 19:10:25 +01:00

17 lines
339 B
PHP

<?php
namespace App\Filament\Resources\Searches\Pages;
use App\Filament\Resources\Searches\SearchResource;
use Filament\Resources\Pages\ListRecords;
class ListSearches extends ListRecords
{
protected static string $resource = SearchResource::class;
protected function getHeaderActions(): array
{
return [];
}
}