@extends('layouts.app') @section('link') @endsection @section('style') @endsection @section('content') @include('shared.messages')

{{__('texte.stock_inputs_arr.show.show_stock_input')}}

{{__('texte.stock_inputs_arr.show.created_by')}}: {{ $stock_input->user->name }}
{{__('texte.stock_inputs_arr.show.supplier')}}: {{$stock_input->supplier->name}}
{{__('texte.stock_inputs_arr.show.storage')}}: {{ $stock_input->storage_id!=0 ? $stock_input->storage->name : ''}}
{{__('texte.stock_inputs_arr.show.date')}}: {{ (new DateTime($stock_input->date))->format('d.m.Y') }}
@if($stock_input->note)
{{__('texte.stock_inputs_arr.show.note')}}: {{ $stock_input->note }}
@endif
@endsection