@extends('layouts.app') @section('title', 'Report Downloads List') @section('content')

Report Downloads

{{-- Alert Messages --}} @include('common.alert')
All Report Downloads
@if(count($reportDownloads)>0) @foreach ($reportDownloads as $report) @endforeach @else @endif
Site Name Location Area Location City Status Published Date Download By Download Type Download From
{{ $report->reportSubmission->site_name }} {{ $report->reportSubmission->location_area }} {{ $report->reportSubmission->location_city }} @if ($report->reportSubmission->status == 0) On-Going @elseif ($report->reportSubmission->status == 1) Published @elseif ($report->reportSubmission->status == 2) Submit For Approval @elseif ($report->reportSubmission->status == 3) Rejected @endif {{ $report->reportSubmission->published_date }} {{ $report->reportSubmissionUser->name }} {{ $report->download_report_type }} {{ $report->download_from }}
There are no data.
{{-- $reportDownloads->links() --}} {{ $reportDownloads->appends(request()->query())->links() }}
@endsection @push('script') @endpush