@extends('layouts.app') @section('title') Products - {!! $cats->title !!} @endsection @section('content')

Technogas Products

@foreach($products->proItem as $proItem)
{!! Html::image('images/products/'.$proItem->image) !!}

{!! $proItem->title !!}

@if($proItem->price > 0)
Price {!! $proItem->price !!} L.E
@endif
@endforeach
{{--
--}}
@endsection @section('js') {!! Html::script('siteroot/plugins/lightbox/ekko-lightbox.js') !!} @endsection