rest( OrderShippingMethod::query()->where('is_active', true) ->get(['id', 'name', 'slug', 'price']) ->map(fn ($shippingMethod) => [ 'id' => $shippingMethod->id, 'name' => $shippingMethod->name, 'slug' => $shippingMethod->slug, 'price' => $shippingMethod->price, ]) ); } }