@php
$param = request()->input();
$orderby = request()->input("orderby");
@endphp
{{ __("Sort by:") }}
@switch($orderby)
@case("price_low_high")
{{ __("Price (Low to high)") }}
@break
@case("price_high_low")
{{ __("Price (High to low)") }}
@break
@case("rate_high_low")
{{ __("Rating (High to low)") }}
@break
@default
{{ __("Recommended") }}
@endswitch