@extends('layouts.app') @section('title', 'Magasins') @section('page-title', 'Magasins') @section('content')
Référence Nom Adresse Téléphone Statut Actions
Aucun magasin.
@if($magasins->total() > 0)

Affichage de {{ $magasins->firstItem() }} à {{ $magasins->lastItem() }} sur {{ $magasins->total() }} magasins

@if($magasins->hasPages())
@if($magasins->onFirstPage()) Précédent @else Précédent @endif Page {{ $magasins->currentPage() }} / {{ $magasins->lastPage() }} @if($magasins->hasMorePages()) Suivant @else Suivant @endif
@endif
@endif
{{-- Modal création / modification --}}

@csrf @if($errors->any())
@foreach($errors->all() as $error)

{{ $error }}

@endforeach
@endif
{{-- Modal suppression --}} Êtes-vous sûr de vouloir supprimer « » ? Cette action est irréversible. {{-- Modal désactivation --}}

Confirmer la désactivation

Êtes-vous sûr de vouloir désactiver « » ?

@endsection