@extends('layouts.admin') @section('title', 'Magasins') @section('page-title', 'Magasins') @section('content')

Liste des magasins

Nouveau
@if($stores->isEmpty())

Aucun magasin.

@else
@foreach($stores as $store) @endforeach
Nom Ville Statut Actions
{{ $store->name }} {{ $store->city }} {{ $store->is_active ? 'Actif' : 'Inactif' }} Modifier
{{ $stores->links() }}
@endif
@endsection