From cd9d833e44c371fdb3a0ab4cf89439104fc2c381 Mon Sep 17 00:00:00 2001 From: Ovidiu U Date: Sun, 5 Apr 2026 20:46:25 +0100 Subject: [PATCH] feat: default fuel type to petrol --- app/Livewire/Public/StationSearch.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Livewire/Public/StationSearch.php b/app/Livewire/Public/StationSearch.php index 1f035b6..d69b47c 100644 --- a/app/Livewire/Public/StationSearch.php +++ b/app/Livewire/Public/StationSearch.php @@ -14,7 +14,7 @@ class StationSearch extends Component public string $search = ''; #[Validate('required|string', message: 'Please select a fuel type.')] - public string $fuelType = ''; + public string $fuelType = 'petrol'; #[Validate('required|integer|min:1|max:20')] public int $radius = 5;