%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/Booking.php |
<?php namespace App\Nova; use Illuminate\Http\Request; use Laravel\Nova\Fields\ID; use Laravel\Nova\Fields\Stack; use Laravel\Nova\Fields\BelongsTo; use Laravel\Nova\Fields\DateTime; use Laravel\Nova\Fields\Boolean; use Laravel\Nova\Fields\Badge; use Laravel\Nova\Http\Requests\NovaRequest; use App\Nova\Metrics\NewBookings; use App\Nova\Metrics\AverageBookingValue; class Booking extends Resource { /** * The model the resource corresponds to. * * @var string */ public static $model = \App\Models\Booking::class; /** * The logical group associated with the resource. * * @var string */ public static $group = 'Bookings'; /** * 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('Payment')->searchable(), BelongsTo::make('User')->searchable(), BelongsTo::make('Therapist')->searchable(), Stack::make('Date & Time', [ DateTime::make('Start Date', 'start_date'), DateTime::make('End Date', 'end_date'), ]), DateTime::make('Start Date', 'start_date')->hideFromIndex(), DateTime::make('End Date', 'end_date')->hideFromIndex(), DateTime::make('Created', 'created_at')->sortable(), Badge::make('Status', function () { return \App\Models\Booking::STATUSES[$this->status]; })->map([ 'Cancelled' => 'danger', 'Pending' => 'info', 'Complete' => 'success' ]), ]; } /** * Get the cards available for the request. * * @param \Illuminate\Http\Request $request * @return array */ public function cards(Request $request) { return [ new NewBookings, new AverageBookingValue ]; } /** * 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 []; } }