@extends('layouts.guest') @section('title') List @endsection @section('content')
@foreach ($lists as $key => $advertisment)
Card image cap

{{GoogleTranslate::trans($advertisment->title,App::getLocale())}}

@foreach ($advertisment->getAdvertismentCountries as $country) {{GoogleTranslate::trans($country->getCountry->name,App::getLocale())}}, @endforeach

{{$advertisment->created_at->diffForHumans()}}

${{$advertisment->price}}

{{GoogleTranslate::trans('Accept',App::getLocale())}}

@foreach ($advertisment->methods as $paymentMethod) {{GoogleTranslate::trans($paymentMethod->payment->title,App::getLocale())}}, @endforeach

{{GoogleTranslate::trans('Explore',App::getLocale())}}
@endforeach
@endsection