currentRoute = request()->route()->getName(); $this->country = request()->route('country'); } public function updatedCountry() { $this->redirectRoute($this->currentRoute, ['country' => $this->country]); } }; ?>
@foreach(\WW\Countries\Models\Country::all() as $country)
{{ str($country->iso_code)->lower() }} {{ $country->name }}
@endforeach