@extends('admin.layouts.master') @section('content')
{{--
--}}

Offender Removal Request Details

First Name: @if (!empty($details)) {{ $details->first_name }} @endif

Last Name: @if (!empty($details)) {{ $details->last_name }} @endif

Email: @if (!empty($details)) {{ $details->email }} @endif

Comment

@if (!empty($details)) {!! $details->description !!} @endif

Attachment
@foreach ($details['image'] as $key => $image) @if ($key < 2) @endif @endforeach @php $i = count($details['image']); $k = 0; @endphp @foreach ($details['image'] as $image) @php $k= $k + 1; @endphp @if ($k == 4)

@if ($i == 4) @elseif($i > 4) + {{ $i - 3 }} Attachments @endif

@endif @endforeach
{{-- --}} @endsection