@extends('backend.layouts.admin')
@section('title', 'List des entités sources')
@section('content')
| # |
Entreprise |
Action |
@if($promoteurs->isEmpty())
| Aucun promoteur trouvé. |
@else
@foreach ($promoteurs as $i => $promoteur)
| {{ ($i+1) }} |
{{ $promoteur->nom_entreprise }} |
|
@endforeach
@endif
{{ $promoteurs->links('pagination::bootstrap-5') }}
@endsection