PHP code example of mikaelpopowicz / nova-vue-select

1. Go to this page and download the library: Download mikaelpopowicz/nova-vue-select 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/ */

    

mikaelpopowicz / nova-vue-select example snippets


// in your Nova Resource

VueSelect('Field label', 'attribute', OtherResource::class),



namespace App\Nova\Filters;

use App\Nova\User;
use Illuminate\Http\Request;
use Mikaelpopowicz\NovaVueSelect\VueSelectFilter;

class UserFilter extends VueSelectFilter
{
    public function __construct()
    {
        parent::__construct(User::class);
    }
    
    public function apply(Request $request, $query, $value)
    {
        return $query->where('user_id', '=', $value);
    }
}