@extends('layouts.view') @section('title',trans('lang.shipment_comments')) @section('links') @endsection @section('content')

{{trans('lang.shipment_comments')}}

@if (count($errors) > 0)
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @if(isset($Shipment_Comments)) @method('PUT') @endif
@foreach($Shipment->comments as $comments)
@if($Shipment->initiator->img_path !=null) @else @endif

{{$Shipment->initiator->name}}:
{{$comments->note}}

@endforeach
@endsection @section('scripts') @endsection