Available Packages
@foreach($products->data as $item)
@include('partials.banner', ['page' => 'catalogue'])
@if(strtolower($item->product_name) == 'family')
@elseif(strtolower($item->product_name) == 'compact')
@endif
@endif
@elseif(strtolower($item->product_name) == 'access')
@elseif(strtolower($item->product_name) == 'premium')
@endforeach
@endif
@if(Auth::check())
@if(Auth::user()->currency->is_currency_fixed == '1')
₦{{ (number_format( $item->price)) }}
@else
{{ (number_format( Auth::user()->currency->rate * $item->price)) }} {{Auth::user()->currency->currency}}
@endif
@endif