{{-- Location Fields Component for Module Forms --}} @php // Get location data $countries = \App\Models\Country::select('name', 'id')->orderBy('name')->pluck('name', 'id')->toArray(); $states = \App\Models\State::select('name', 'id')->orderBy('name')->pluck('name', 'id')->toArray(); $cities = \App\Models\City::select('name', 'id')->orderBy('name')->pluck('name', 'id')->toArray(); @endphp @push('js') @endpush