@extends('layouts.app') @section('title', 'My Uploads || Heritage In Khulna') @section('external_css') @endsection @section('content')

Uploads

@if(request()->has('phone') && !empty(request()->input('phone')) && $contacts->count() > 0) @foreach ($contacts as $contact) @endforeach
S.L Image Name Phone Number Status
{{ $loop->iteration }} Image {{ $contact->user_name }} {{ $contact->phone_no }} @if ($contact->status == 0) Pending @elseif ($contact->status == 1) Approved @elseif ($contact->status == 2) Rejected @endif
@elseif(request()->has('phone') && !empty(request()->input('phone')) && $contacts->isEmpty())

No photos found for the given phone number.

@endif
@endsection @section('external_js') @endsection