@extends('main') @section('title') @endsection @section('styles') @endsection @section('content')
{{ __('Search Results For') }} "{{ Request::get('s') }}" {{ __('Results No') }} ( {{ $products->total() }})

    @foreach ($products as $key => $product)
  • {!! $product->title !!} @if ($product->offer)
    {!! $product->getPercentAttribute() !!}%
    @else @endif
    {!! @optional($product->unit)->title !!}
    {!! __('Price') !!} @if ($product->offer) {!! $product->price2 !!} {!! $product->offer !!} {!! __('EGP') !!} @else {!! $product->price2 !!} {!! __('EGP') !!} @endif
    {!! csrf_field() !!}
  • @endforeach
{{ $products->links('vendor.pagination.mobile') }}
@endsection @section('scripts') @endsection