@php $highestFee = App\Models\TutorCanTeach::max('price'); $lowestFee = App\Models\TutorCanTeach::min('price'); $min_fee = request()->input('min_fee') ?? $lowestFee; $max_fee = request()->input('max_fee') ?? $highestFee; @endphp
{{ get_phrase('Min') }}: ${{ $lowestFee }}
{{ get_phrase('Max') }}: ${{ $highestFee }}