alexwenzel/ajax-select

A Laravel Nova 4 field - Ajax Select
76,664 2
Install
composer require alexwenzel/ajax-select
Latest Version:1.1
PHP:^8.0
License:MIT
Last Updated:Mar 25, 2025
Links: GitHub  ·  Packagist
Maintainer: alexwenzel

Nova Ajax Select (Nova 4)

Ajax populated select fields based on the values of other fields and when they change.

This is a fork of https://github.com/dillingham/nova-ajax-select and only supports nova 4 and php 8.

nova-ajax-select

Install

composer require alexwenzel/ajax-select

Usage

Specify a request url & optionally the parent($attribute) to watch & trigger the ajax select:

use Alexwenzel\AjaxSelect\AjaxSelect;
BelongsTo::make('Company'),

AjaxSelect::make('User')
    ->get('/api/company/{company}/users')
    ->parent('company'),

Add the field for index & detail views display. AjaxSelect is for forms only

BelongsTo::make('User')->exceptOnForms(),

Request Url:

In the above example, we say company is the parent.

The {company} url parameter will equal the selected Company field value.

Response Format:

The select field expects a value & display. Map your results like so:

Route::get('api/company/{company}/users', function($company_id) {

    $company = \App\Company::find($company_id);

    return $company->users->map(function($user) {
        return [ 'value' => $user->id, 'display' => $user->name ];
    });
})->middleware(['nova']);

Make children depend on other children

City makes a request based on State, which makes a request based on Country:

Select::make('Country')
    ->options([]),

AjaxSelect::make('State')
    ->get('/api/country/{country}/states')
    ->parent('country'),

AjaxSelect::make('City')
    ->get('/api/state/{state}/cities')
    ->parent('state'),

Make multiple children depend on one parent

File & Comment will both make a request based on Project

BelongsTo::make('Project'),

AjaxSelect::make('File')
    ->get('/{project}/files')
    ->parent('project'),

AjaxSelect::make('Comment')
    ->get('/{project}/comments')
    ->parent('project'),

Related Packages

ziffmedia/nova-select-plus

A Nova select field for simple and complex select inputs

639,025 95
outl1ne/nova-multiselect-field

A multiple select field for Laravel Nova.

3,762,599 343
optimistdigital/nova-multiselect-field

A multiple select field for Laravel Nova.

3,783,672 343
risul/laravel-like-comment

Ajax based site wide like and comment system for laravel

7,634 107
efficiently/jquery-laravel

This package provides jQuery and the jQuery-ujs driver for your Laravel >= 5.1 a...

11,389 13