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

{{__('Vehicle rent')}}

{{__('Change')}} {{__('Choose file')}} {{__('Remove')}}
@if(!$comments->isEmpty())

{{__('Comments')}}

@foreach($comments as $br=>$comment) {{__('Comment')}} {{$br+1}}

{{$comment->comment}}

{{$comment->ime.' '.$comment->prezime}} {{date('d.m.Y. H:i:s', strtotime($comment->created_at))}}
@endforeach
@endif @if(!$rentImages->isEmpty())

{{__('Images')}} ({{__('RENT')}})

@endif @if(!$returnImages->isEmpty())

{{__('Images')}} ({{__('RETURN')}})

@foreach($returnImages as $img) @endforeach
@endif @endsection