@extends('web.layouts.container') @section('css') @endsection @section('content')

{{$title}}

@if(count($otherRequests)) @foreach($otherRequests as $otherRequest)

{{$otherRequest->topicName}}

{{__('otherRequests.request_no') . ': ' . $otherRequest->id}}
{{__('otherRequests.request_type')}}

{{$otherRequest->request_type}}

{{__('otherRequests.details')}}

{{$otherRequest->details}}

@if(is_array($otherRequest->files) && count($otherRequest->files))
{{__('otherRequests.request_attachments')}}
@foreach($otherRequest->files as $file) @if(strpos($file, '.pdf')) @else @endif @endforeach
@endif
@endforeach @else
{{__('otherRequests.no_data')}}
@endif
@endsection @section('inner_js') @endsection