ListVisaMasterPaymentOrders::route('/'), 'create' => CreateVisaMasterPaymentOrder::route('/create'), 'edit' => EditVisaMasterPaymentOrder::route('/{record}/edit'), ]; } /** * Get the query for the record route binding * * @return \Illuminate\Database\Eloquent\Builder<\App\Modules\VisaMasterPaymentOrder\Models\VisaMasterPaymentOrder> */ public static function getRecordRouteBindingEloquentQuery(): Builder { return parent::getRecordRouteBindingEloquentQuery() ->withoutGlobalScopes([ SoftDeletingScope::class, ]); } }