<h1 class="mb-5 text-center w-75">{{$name}}</h1>
@if($verif && !isset($filters['end_date']))
    <h3 class="mb-5 text-center">Merci de sélectionner une date de fin pour afficher les marchés à renouveler sur les 6
        prochains mois. </h3>
@endif
@if($verif)
    <x-noData/>
@endif
@if(!$renewalMarkets['renewalMarket']->isEmpty())
    <table class="table table-bordered" id="sortTable">
        <thead>
        <tr class="bg-primary text-white">
            <th scope="col">Libellé marché
            </th>
            <th scope="col">Dates de fin de marché
            </th>
        </tr>
        </thead>
        <tbody>
        @foreach($renewalMarkets['renewalMarket']->items() as $renewalMarket)
            <tr>
                <th scope="row">{{ $renewalMarket->libelle_marche }}</th>
                <td>{{ strftime('%d-%m-%Y',strtotime($renewalMarket->date_fin)) }}</td>
        @endforeach
        </tbody>
    </table>
    {{ $renewalMarkets['renewalMarket']->appends(request()->except('renewalPage'))->links() }}
    <x-saveAsExcel :data="$renewalMarkets['allData']"
                   :nameFile="'Renouvellement des marchés sur les 6 prochains mois'"/>
@endif
