@extends('layout.master') @section('title', 'Détails du Centre de Distribution') @section('main-content')
Informations générales
Nom :
{{ $distributionCenter->name }}
Pays :
{{ $distributionCenter->country->name ?? 'N/A' }}
Ville :
{{ $distributionCenter->city->name ?? 'N/A' }}
Quartier :
{{ $distributionCenter->neighborhood->name ?? 'N/A' }}
Adresse :
{{ $distributionCenter->address }}
Téléphone :
{{ $distributionCenter->phone }}
Email :
{{ $distributionCenter->email }}
Capacité de stockage :
{{ $distributionCenter->storage_capacity ?? 'Non spécifié' }}
Statut :
@if ($distributionCenter->is_active) Actif @else Inactif @endif
@if ($distributionCenter->description)
Description :
{{ $distributionCenter->description }}
@endif
Stock de bouteilles
Consignes

Disponibles en stock

{{ $distributionCenter->total_empty_bottles }}

Consignes + Recharges

Disponibles en stock

{{ $distributionCenter->total_filled_bottles }}

@if ($distributionCenter->latitude && $distributionCenter->longitude)
Localisation
@endif
Stock détaillé par type de bouteille
@forelse($distributionCenter->bottleTypeStocks as $bottleType) @empty @endforelse
Type de bouteille Vides Pleines Total
{{ $bottleType->name }} {{ $bottleType->pivot->stock_empty }} {{ $bottleType->pivot->stock_filled }} {{ $bottleType->pivot->stock_empty + $bottleType->pivot->stock_filled }}
Aucun type de bouteille associé à ce centre de distribution
@endsection @section('script') @if ($distributionCenter->latitude && $distributionCenter->longitude) @endif @endsection