PHP code example of izi-dev / nova-conditional-field
1. Go to this page and download the library: Download izi-dev/nova-conditional-field 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/ */
izi-dev / nova-conditional-field example snippets
class Page extends Resource
{
public function fields(Request $request)
{
return [
Select::make(__('Type'), 'type')
->options([]),
//Condition in BACKEND
KeyValue::make(__('Options'), 'option')
->if(['type'], fn($value) => $value['type'] === 'value')
//Condition in FRONT
->if(['type'], "_value.type === 'value'")
];
}
}