@extends('main')
@section('styles')
@endsection
@section('page-title')
@endsection
@section('content')
{!! __('Our products') !!}
@foreach ($products as $key => $product)
@if ($product->offer)
{!! $product->getPercentAttribute() !!}%
@endif
{!! $product->price2 !!} {!! __('EGP') !!}
{!! __('Order Now') !!}
@endforeach
@endsection
@section('scripts')
{!! Html::script(Theme::current()->assetPath.'/prettyPhoto/js/jquery.prettyPhoto.min.js') !!}
@endsection