Files
einundzwanzig-portal/app/Nova/BookCase.php
2023-02-19 18:05:16 +01:00

175 lines
4.6 KiB
PHP

<?php
namespace App\Nova;
use App\Notifications\ModelCreatedNotification;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Http\Request;
use Laravel\Nova\Fields\BelongsTo;
use Laravel\Nova\Fields\Boolean;
use Laravel\Nova\Fields\HasMany;
use Laravel\Nova\Fields\ID;
use Laravel\Nova\Fields\MorphMany;
use Laravel\Nova\Fields\Number;
use Laravel\Nova\Fields\Text;
use Laravel\Nova\Http\Requests\NovaRequest;
class BookCase extends Resource
{
/**
* The model the resource corresponds to.
*
* @var string
*/
public static $model = \App\Models\BookCase::class;
/**
* The single value that should be used to represent the resource when being displayed.
*
* @var string
*/
public static $title = 'title';
/**
* The columns that should be searched.
*
* @var array
*/
public static $search = [
'id',
'title',
];
public static function label()
{
return __('Book Case');
}
public static function afterCreate(NovaRequest $request, Model $model)
{
\App\Models\User::find(1)
->notify(new ModelCreatedNotification($model, str($request->getRequestUri())
->after('/nova-api/')
->before('?')
->toString()));
}
public function subtitle()
{
return __('Created by: :name', ['name' => $this->createdBy->name]);
}
/**
* Get the fields displayed by the resource.
*/
public function fields(Request $request): array
{
return [
ID::make()
->sortable(),
Text::make(__('Title'), 'title')
->rules('required', 'string'),
Number::make(__('Latitude'), 'latitude')
->rules('required', 'numeric')
->step(0.000001)
->hideFromIndex(),
Number::make(__('Longitude'), 'longitude')
->rules('required', 'numeric')
->step(0.000001)
->hideFromIndex(),
Text::make(__('Address'), 'address')
->rules('required', 'string'),
Text::make(__('Type'), 'type')
->rules('required', 'string'),
Text::make(__('Open'), 'open')
->rules('required', 'string')
->hideFromIndex(),
Text::make(__('Comment'), 'comment')
->rules('required', 'string')
->hideFromIndex(),
Text::make(__('Contact'), 'contact')
->rules('required', 'string')
->hideFromIndex(),
Text::make(__('Bcz'), 'bcz')
->rules('required', 'string')
->hideFromIndex(),
Boolean::make(__('Digital'), 'digital')
->rules('required')
->hideFromIndex(),
Text::make(__('Icontype'), 'icontype')
->rules('required', 'string')
->hideFromIndex(),
Boolean::make(__('Deactivated'), 'deactivated')
->rules('required'),
Text::make(__('Deactreason'), 'deactreason')
->rules('required', 'string')
->hideFromIndex(),
Text::make(__('Entrytype'), 'entrytype')
->rules('required', 'string')
->hideFromIndex(),
Text::make(__('Homepage'), 'homepage')
->rules('required', 'string')
->hideFromIndex(),
HasMany::make(__('OrangePills'), 'orangePills', OrangePill::class),
MorphMany::make(__('Comments'), 'comments', Comment::class),
BelongsTo::make(__('Created By'), 'createdBy', User::class)
->canSee(function ($request) {
return $request->user()
->hasRole('super-admin');
})
->searchable()->withSubtitles(),
];
}
/**
* Get the cards available for the request.
*/
public function cards(Request $request): array
{
return [];
}
/**
* Get the filters available for the resource.
*/
public function filters(Request $request): array
{
return [];
}
/**
* Get the lenses available for the resource.
*/
public function lenses(Request $request): array
{
return [];
}
/**
* Get the actions available for the resource.
*/
public function actions(Request $request): array
{
return [];
}
}