Files
einundzwanzig-portal/app/Nova/Library.php
2022-12-15 14:57:28 +01:00

133 lines
3.0 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\BelongsToMany;
use Laravel\Nova\Fields\Boolean;
use Laravel\Nova\Fields\ID;
use Laravel\Nova\Fields\MultiSelect;
use Laravel\Nova\Fields\Text;
use Laravel\Nova\Http\Requests\NovaRequest;
class Library extends Resource
{
/**
* The model the resource corresponds to.
* @var string
*/
public static $model = \App\Models\Library::class;
/**
* The single value that should be used to represent the resource when being displayed.
* @var string
*/
public static $title = 'name';
public static function label()
{
return __('Library');
}
/**
* The columns that should be searched.
* @var array
*/
public static $search = [
'id',
'name',
];
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()));
}
/**
* Get the fields displayed by the resource.
*
* @param \Illuminate\Http\Request $request
*
* @return array
*/
public function fields(Request $request)
{
return [
ID::make()
->sortable(),
Text::make('Name')
->rules('required', 'string'),
Boolean::make(__('Is public'), 'is_public')
->rules('required', 'boolean'),
MultiSelect::make(__('Languages'), 'language_codes')
->options(
config('languages.languages'),
),
BelongsToMany::make('Library Items'),
BelongsTo::make(__('Created By'), 'createdBy', User::class)
->exceptOnForms(),
];
}
/**
* 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 [];
}
}