Files
2025-03-16 00:55:08 +05:00

81 lines
2.0 KiB
PHP

<?php
namespace App\Nova\Resources;
use App\Models\CurrencyRate as ModelsCurrencyRate;
use App\Nova\Resource;
use App\Nova\Resources\CurrencyRate\CurrencyRateAuth;
use Laravel\Nova\Fields\ID;
use Laravel\Nova\Fields\Select;
use Laravel\Nova\Fields\Text;
use Laravel\Nova\Http\Requests\NovaRequest;
class CurrencyRate extends Resource
{
use CurrencyRateAuth;
/**
* The model the resource corresponds to.
*
* @var class-string<\App\Models\CurrencyRate>
*/
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<int, string>
*/
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<int, \Laravel\Nova\Fields\Field>
*/
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'),
];
}
}