PHP code example of sanderbaas / laravel-nova-belongsto-dependency
1. Go to this page and download the library: Download sanderbaas/laravel-nova-belongsto-dependency 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/ */
sanderbaas / laravel-nova-belongsto-dependency example snippets
return [
...
BelongsTo::make('Company'),
BelongsTo::make('Employee')
->searchable(),
...
];
public static function relatableQuery(NovaRequest $request, $query)
{
$query->where('company_id', '=', $request->selectedCompany);
return $query;
}