@foreach($annonces as $annonce)
@php
$meta_model=new \App\Users_meta();
$picture=$meta_model->get_user_field($annonce->user->id,'profil_picture');
@endphp
{{$annonce->user->last_name}} {{$annonce->user->first_name}}
@if(isset($annonce->profil_annonceur->profession))
({{$annonce->profil_annonceur->profession}})
@endif
{{$annonce->couverture=='international' ? 'International' : 'Uniquement '.$annonce->pays->name}}
{{ucfirst($annonce->type)}}
{{$annonce->metier->intitule_metier}}
{{$annonce->title}}
@if(isset($annonce->date_limit))
(Urgent pour : {{date("d-m-Y",strtotime($annonce->date_limit))}})
@endif
{{Illuminate\Support\Str::limit($annonce->description,200)}}
Publié le : {{date("d-m-Y",strtotime($annonce->created_at))}} |
Pays : {{$annonce->pays->name}}
@endforeach