@extends('frontend.layouts.app') @section('title', app_name() . ' | ' . __('navs.general.home')) @section('content')
загрузка
скриншот
@foreach($comments as $comment)
{{$comment->created_at}}
{{$comment->getUser()->last_name}} {{$comment->getUser()->first_name}}
{{$comment->message}}
@if (count($comment->attachments) > 0)
@foreach($comment->attachments as $attachment)
@endforeach
@endif
@endforeach
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach

@endif
@endsection @section('page-style-files') @stop @section('page-js-files') @stop @section('page-js-script') @stop