PHP code example of coringawc / filament-input-loading

1. Go to this page and download the library: Download coringawc/filament-input-loading library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

coringawc / filament-input-loading example snippets


use CoringaWc\FilamentInputLoading\TextInput;

// Spinner appears on blur (when the user leaves the field)
TextInput::make('name')->lazy()

// Spinner appears after a debounce delay while typing
TextInput::make('search')->debounce(500)