176 lines
4.2 KiB
PHP
176 lines
4.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Nova;
|
|
|
|
use Illuminate\Support\Str;
|
|
use Laravel\Nova\Fields\BelongsTo;
|
|
use Laravel\Nova\Fields\Boolean;
|
|
use Laravel\Nova\Fields\DateTime;
|
|
use Laravel\Nova\Fields\HasMany;
|
|
use Laravel\Nova\Fields\ID;
|
|
use Laravel\Nova\Fields\Number;
|
|
use Laravel\Nova\Fields\Select;
|
|
use Laravel\Nova\Fields\Text;
|
|
use Laravel\Nova\Fields\Textarea;
|
|
use Laravel\Nova\Http\Requests\NovaRequest;
|
|
use Maatwebsite\LaravelNovaExcel\Actions\DownloadExcel;
|
|
|
|
final class QuestionResource extends Resource
|
|
{
|
|
/**
|
|
* The model the resource corresponds to.
|
|
*
|
|
* @var class-string<\App\Models\Question>
|
|
*/
|
|
public static string $model = \App\Models\Question::class;
|
|
|
|
/**
|
|
* The single value that should be used to represent the resource when being displayed.
|
|
*
|
|
* @var string
|
|
*/
|
|
public static $title = 'text';
|
|
|
|
/**
|
|
* The columns that should be searched.
|
|
*
|
|
* @var array
|
|
*/
|
|
public static $search = ['id', 'text'];
|
|
|
|
/**
|
|
* Indicates if the resource should be displayed in the sidebar.
|
|
*
|
|
* @var bool
|
|
*/
|
|
public static $displayInNavigation = true;
|
|
|
|
/**
|
|
* The group associated with the resource.
|
|
*
|
|
* @var string
|
|
*/
|
|
public static $group = 'Questionnaire';
|
|
|
|
/**
|
|
* Get the displayable label of the resource.
|
|
*/
|
|
public static function label(): string
|
|
{
|
|
return 'Questions';
|
|
}
|
|
|
|
/**
|
|
* Get the displayable singular label of the resource.
|
|
*/
|
|
public static function singularLabel(): string
|
|
{
|
|
return 'Question';
|
|
}
|
|
|
|
/**
|
|
* Get the fields displayed by the resource.
|
|
*
|
|
* @return array<int, \Laravel\Nova\Fields\Field|\Laravel\Nova\Panel|\Laravel\Nova\ResourceTool|\Illuminate\Http\Resources\MergeValue>
|
|
*/
|
|
public function fields(NovaRequest $request): array
|
|
{
|
|
return [
|
|
ID::make()->sortable(),
|
|
|
|
Text::make('Question', 'text')
|
|
->displayUsing(fn ($value) => Str::limit($value, 40))
|
|
->onlyOnIndex()
|
|
->sortable(),
|
|
|
|
BelongsTo::make('Question Group', 'questionGroup', QuestionGroupResource::class)
|
|
->sortable()
|
|
->filterable(),
|
|
|
|
|
|
|
|
Textarea::make('Text')
|
|
->rules('required')
|
|
->updateRules('required'),
|
|
|
|
Boolean::make('Has Yes')
|
|
->sortable()
|
|
->filterable(),
|
|
|
|
Boolean::make('Has No')
|
|
->sortable()
|
|
->filterable(),
|
|
|
|
Boolean::make('Has NA', 'has_na')
|
|
->sortable()
|
|
->filterable(),
|
|
|
|
Select::make('Details')
|
|
->options([
|
|
'optional' => 'Optional',
|
|
'required' => 'Required',
|
|
'req_on_yes' => 'Required on Yes',
|
|
'req_on_no' => 'Required on No',
|
|
])
|
|
->displayUsingLabels()
|
|
->nullable()
|
|
->sortable()
|
|
->filterable(),
|
|
|
|
Number::make('Sort Order')
|
|
->sortable()
|
|
->filterable(),
|
|
|
|
Boolean::make('Is Scored')
|
|
->sortable()
|
|
->filterable(),
|
|
|
|
HasMany::make('Answers', 'answers', AnswerResource::class),
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Get the cards available for the request.
|
|
*
|
|
* @return array<int, \Laravel\Nova\Card>
|
|
*/
|
|
public function cards(NovaRequest $request): array
|
|
{
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* Get the filters available for the resource.
|
|
*
|
|
* @return array<int, \Laravel\Nova\Filters\Filter>
|
|
*/
|
|
public function filters(NovaRequest $request): array
|
|
{
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* Get the lenses available for the resource.
|
|
*
|
|
* @return array<int, \Laravel\Nova\Lenses\Lens>
|
|
*/
|
|
public function lenses(NovaRequest $request): array
|
|
{
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* Get the actions available for the resource.
|
|
*
|
|
* @return array<int, \Laravel\Nova\Actions\Action>
|
|
*/
|
|
public function actions(NovaRequest $request): array
|
|
{
|
|
return [
|
|
new DownloadExcel,
|
|
];
|
|
}
|
|
}
|