*/ public static $model = \App\Models\CurrencyRate::class; /** * The single value that should be used to represent the resource when being displayed. * * @var string */ public static $title = 'id'; /** * The columns that should be searched. * * @var array */ public static $search = [ 'id', ]; /** * Get the displayable label of the resource. */ public static function label(): string { return __('Currency rate'); } /** * Get the fields displayed by the resource. * * @param \Laravel\Nova\Http\Requests\NovaRequest $request * @return array */ public function fields(NovaRequest $request) { return [ ID::make()->sortable(), Select::make(__('Currency from'), 'currency_from') ->displayUsingLabels() ->searchable() ->options(ModelsCurrencyRate::currencies()) ->rules('required') ->fullWidth() ->help('1 möçberi'), Select::make(__('Currency to'), 'currency_to') ->displayUsingLabels() ->searchable() ->options(ModelsCurrencyRate::currencies()) ->rules('required') ->fullWidth(), Text::make('Value', 'value') ->fullWidth() ->help('Bitin däl sanlary "." bilen ýazmaly') ->rules('required', 'numeric'), ]; } }