@extends('layouts.admin')
@section('title', 'Magasins')
@section('page-title', 'Magasins')
@section('content')
@if($stores->isEmpty())
Aucun magasin.
@else
| Nom |
Ville |
Statut |
Actions |
@foreach($stores as $store)
| {{ $store->name }} |
{{ $store->city }} |
{{ $store->is_active ? 'Actif' : 'Inactif' }} |
Modifier
|
@endforeach
{{ $stores->links() }}
@endif
@endsection