*/ public static $model = \App\Models\Payment\OnlinePaymentHistory::class; /** * The single value that should be used to represent the resource when being displayed. * * @var string */ public static $title = 'orderId'; /** * The columns that should be searched. * * @var array */ public static $search = [ 'orderId', 'orderNumber', ]; /** * Get the displayable label of the resource. */ public static function label(): string { return __('Online payment history'); } /** * Get the fields displayed by the resource. * * @param \Laravel\Nova\Http\Requests\NovaRequest $request * @return array */ public function fields(NovaRequest $request) { return [ ID::make()->sortable(), Text::make('amount'), Text::make('orderNumber', 'orderNumber'), Text::make('description'), Text::make('orderId', 'orderId'), Text::make('formUrl', 'formUrl'), Text::make('successUrl', 'successUrl'), Text::make('paymentStatus', 'paymentStatus'), Text::make('callbackStatus', 'callbackStatus'), Text::make('username'), Text::make('online_paymantable_id'), Text::make('online_paymantable_type'), DateTime::make(__('Created at'), 'created_at') ->displayUsing(fn ($date) => $date?->format('H:i, d.m.Y')), DateTime::make(__('Updated at'), 'updated_at') ->displayUsing(fn ($date) => $date?->format('H:i, d.m.Y')), ]; } /** * Get the cards available for the request. * * @param \Laravel\Nova\Http\Requests\NovaRequest $request * @return array */ public function cards(NovaRequest $request) { return []; } /** * Get the filters available for the resource. * * @param \Laravel\Nova\Http\Requests\NovaRequest $request * @return array */ public function filters(NovaRequest $request) { return []; } /** * Get the lenses available for the resource. * * @param \Laravel\Nova\Http\Requests\NovaRequest $request * @return array */ public function lenses(NovaRequest $request) { return []; } /** * Get the actions available for the resource. * * @param \Laravel\Nova\Http\Requests\NovaRequest $request * @return array */ public function actions(NovaRequest $request) { return [ CheckOnlinePayment::make() ->icon('rss') ->sole(), ]; } }