@extends('layouts.app') @section('content')
{{__('texte.suppliers_arr.show.name')}}: {{ $supplier->name }}
{{__('texte.suppliers_arr.show.pic')}}: {{ $supplier->mol }}
{{__('texte.suppliers_arr.show.address')}}: {{ $supplier->address }}
{{__('texte.suppliers_arr.show.mobile')}}: {{ $supplier->mobile }}
{{__('texte.suppliers_arr.show.phone')}}: {{ $supplier->phone }}
{{__('texte.suppliers_arr.show.email')}}: {{ $supplier->email }}
{{__('texte.suppliers_arr.show.description')}}: {!! $supplier->description !!}
{{__('texte.suppliers_arr.show.active')}}: {{ $supplier->active==1 ? __('texte.suppliers_arr.show.yes') : __('texte.suppliers_arr.show.no') }}
@foreach ($supplier->images as $image)
{{$image->title}}
@endforeach @if(count($supplier->files)>0)
{{__('texte.suppliers_arr.show.files')}}: @foreach ($supplier->files as $file)
name)}}' target='_blank'>{{$file->title}} - {{(new DateTime($file->created_at))->format('d.m.Y')}}
@endforeach
@endif
@endsection