PHP code example of suhaib-kotb / nova-ajax-text

1. Go to this page and download the library: Download suhaib-kotb/nova-ajax-text 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/ */

    

suhaib-kotb / nova-ajax-text example snippets


Route::get('/api/users/{national_id}/{property}', function($national_id, $property) {
    $user = \App\User::where('national_id', $national_id)->first();
    return $user->$property ?? '';  // it equal to $user->name;
})->middleware(['nova']);