Fare Type Operator Travel Class RLS Travel Class Start Cost 12 Mo. 24 Mo. Cost 12 Mo. 24 Mo. Route Status @foreach($fares as $fare) {{ $fare->ft_title }} {{ $fare->getTcAlias() }} {{ $fare->tc_title }} {{ \Carbon\Carbon::parse($fare->start_date)->format('d-m-Y')}} {{ $currencySymb }} {{ number_format($fare->oneway_cost, 2, '.', '') }} {{ $currencySymb }} {{ number_format($fare->oneway_cost_12, 2, '.', '') }} {{ $currencySymb }} {{ number_format($fare->oneway_cost_24, 2, '.', '') }} {{ $currencySymb }} {{ number_format($fare->round_cost, 2, '.', '') }} {{ $currencySymb }} {{ number_format($fare->round_cost_12, 2, '.', '') }} {{ $currencySymb }} {{ number_format($fare->round_cost_24, 2, '.', '') }} {{ $fare->is_active ? 'Active' : 'Inactive' }}
Edit
@endforeach