%PDF- %PDF-
Direktori : /home/forge/api-takeaseat.eco-n-tech.co.uk/app/Nova/ |
Current File : //home/forge/api-takeaseat.eco-n-tech.co.uk/app/Nova/Qualification.php |
<?php namespace App\Nova; use Illuminate\Http\Request; use Laravel\Nova\Fields\ID; use Laravel\Nova\Fields\Text; use Laravel\Nova\Fields\File; use Laravel\Nova\Fields\BelongsTo; use Laravel\Nova\Fields\DateTime; use Illuminate\Support\Facades\Storage; use Laravel\Nova\Http\Requests\NovaRequest; class Qualification extends Resource { /** * The model the resource corresponds to. * * @var string */ public static $model = \App\Models\Qualification::class; /** * The logical group associated with the resource. * * @var string */ public static $group = 'Therapists'; /** * 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 fields displayed by the resource. * * @param \Illuminate\Http\Request $request * @return array */ public function fields(Request $request) { return [ ID::make(__('ID'), 'id')->sortable(), BelongsTo::make('Therapist') ->searchable() ->sortable(), Text::make('File Name') ->onlyOnIndex() ->sortable(), File::make('File Path') ->download(function ($request, $model, $disk, $value) { return Storage::disk('local')->download($value); }), Text::make('File Type') ->onlyOnIndex() ->sortable(), Text::make('Name') ->hideFromIndex(), Text::make('Result') ->hideFromIndex(), Text::make('Year') ->hideFromIndex(), DateTime::make('Created At') ->onlyOnIndex() ->sortable(), DateTime::make('Updated At') ->onlyOnIndex() ->sortable(), ]; } /** * Get the cards available for the request. * * @param \Illuminate\Http\Request $request * @return array */ public function cards(Request $request) { return []; } /** * Get the filters available for the resource. * * @param \Illuminate\Http\Request $request * @return array */ public function filters(Request $request) { return []; } /** * Get the lenses available for the resource. * * @param \Illuminate\Http\Request $request * @return array */ public function lenses(Request $request) { return []; } /** * Get the actions available for the resource. * * @param \Illuminate\Http\Request $request * @return array */ public function actions(Request $request) { return []; } }