@extends('layouts.app') @section('content')

{{__('texte.differences_arr.show.show_storage_differences')}}

{{__('texte.differences_arr.show.product')}}: {{ $product->name }}
@foreach($storages as $storage) @endforeach
{{strtoupper(__('texte.differences_arr.show.id'))}} {{__('texte.differences_arr.show.storage')}} {{__('texte.differences_arr.show.stock_quantity')}} {{__('texte.differences_arr.show.invoice_quantity')}} {{__('texte.differences_arr.show.difference')}}
{{$storage->id}} {{$storage->name}} {{$storage->stock_quantity}} {{$storage->invoice_quantity}} {{$storage->stock_quantity - $storage->invoice_quantity}}
@endsection