@extends('layouts.adminApp') @section('title', 'Requested Images || Heritage In Khulna') @section('external_css') @endsection @section('content')
Pending Images
@foreach($images as $image) @if($image->status == 0) @endif @endforeach
S.L Image Site Name User Name Phone No Status Action
{{ $loop->iteration }} Image {{ $image->site->site_name_en }} {{ $image->user_name }} {{ $image->phone_no }} Pending
Approved Images
@foreach($images as $image) @if($image->status == 1) @endif @endforeach
S.L Image Site Name User Name Phone No Status
{{ $loop->iteration }} Image {{ $image->site->site_name_en }} {{ $image->user_name }} {{ $image->phone_no }} Approved
Rejected Images
@foreach($images as $image) @if($image->status == 2) @endif @endforeach
S.L Image Site Name User Name Phone No Status
{{ $loop->iteration }} Image {{ $image->site->site_name_en }} {{ $image->user_name }} {{ $image->phone_no }} Rejected
@foreach($images as $image) @endforeach
@endsection @section('external_js') @if(session('success')) @endif @if(session('error')) @endif @endsection