@extends('layouts.app-home') @section('content')
Categories

{{$name}}


@if(@$productInfo[0]->id ) @foreach($productInfo as $val)
@if($val->main_img) @if(auth()->guard('agent')->user()) @else @endif {{$val->title}} @else {{$val->title}} @endif

@if(!empty($val->stock))In Stock @else Out of Stock @endif

{{$val->title}}

@guest @if(auth()->guard('agent')->user())

{{$val->sku}}

@if($val->discount_price!='0') £{{$val->price-$val->discount_price}} @else £{{$val->price}} @endif
@else

{{$val->sku}}

Login @endif @else

{{$val->sku}}

@if($val->discount_price!='0') £{{$val->price-$val->discount_price}} @else £{{$val->price}} @endif
@endif
@endforeach @else

Product Not Found

@endif
@endsection @section('script') @endsection