@extends('front.layout.master') @section('content') @if(@$sliders)
@endif
@if($posts->count())
Latest Buy Leads
@foreach($posts as $post)
{{ $post->subject }}

@lang('wanted'): {{ $post->subject }}

  • {{ convertFromDateToFormat($post->created_at , 'Y-m-d') }}
  • {!! $post->user->country->svg !!} @lang('buyer_from') {{ ucfirst($post->user->country->name) }}

{{ strLimit($post->requirements , 200) }}

@endforeach
@endif
@if(isset($secondSliders) && $secondSliders->count())
@endif @if($products->count())
@lang('latest_products')
@foreach($products as $product)
{{ $product->name }}

{{ $product->name }}

  • 5.5
  • @lang('supplier_from') {{ $product->user->country->name }}

{{ strLimit($product->description , 200 ) }}

@endforeach
@endif
@lang('suppliers_by_region')
@if($countries->count()) @foreach($countries as $country)
{{ $country->name }}
@endforeach @endif
@endsection