@extends('layouts.master') @section('title', 'Mes Entreprises') @section('content')

Liste des Opportunités

{{-- Ajouter une opportunité --}}
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
@lang('messages.back')
@forelse($opportunites as $key => $opportunite) @empty @endforelse
# Titre Type Domaine Description Infos Entreprise Contact Date publication
{{ $key + 1 }} {{ $opportunite->titre }} {{ $opportunite->type }} {{ $opportunite->domaine }} {{ Str::limit($opportunite->description, 80) }} {{ Str::limit($opportunite->entreprise_info, 80) }} {{ $opportunite->point_contact }}
📧 {{ $opportunite->email }}
📞 {{ $opportunite->telephone }}
{{ $opportunite->created_at->format('d/m/Y') }}
Aucune opportunité trouvée
@endsection