@extends('site.layouts.master') @section('contents')
@foreach($items as $item) @include('site.itemCard') @endforeach
@foreach($categories as $category)
@foreach($category->items->where('offer','false')->take(9) as $item) @include('site.itemCard') @endforeach
@endforeach
@if(count($offersCoupon) > 0 )
@lang('data.bestDeals')
@foreach($offersCoupon as $item) @include('site.itemCard') @endforeach
@endif
@lang('data.aboutApp')

@lang('data.downloadFromStore')

@lang('data.aboutDescription')

@stop