@extends('Frontend.Layouts.modal') @section('title') {{ trans('front.checklist') }} @stop @section('body')
@foreach ($checklist->rows()->get() as $row) @endforeach
{{ trans('front.task_completed')}} {{ trans('front.activity')}} {{ trans('front.photo')}}
{{ $row->completed ? trans('global.yes') : trans('global.no') }} {{ $row->activity }} @if ($row->images->count()) @foreach ($row->images as $image) {{ trans('front.preview') }} @endforeach @else - @endif
@stop @section('buttons') {{ trans('admin.cancel') }} @stop