@extends('admin.layouts.main') @section('page-title', 'Donations') @section('main-container')
@if(session('status')) @endif

Manage Donations New Donation+

@foreach($donations as $donation) @endforeach
# Name Image No/Plates Donor Contacts Location Donated to Status Action
{{ $donation->id }} {{ $donation->name }} @if($donation->img) @else No Image @endif {{ $donation->qty }} {{ $donation->user['name'] ?? 'Telegram' }} {{ $donation->phone }} View Location {{ $donation->location }} {{ $donation->slum_area['name'] ?? 'Unknown' }} @if(strcasecmp($donation->status, "pending") == 0) {{ $donation->status }} @elseif ($donation->status === "In Transit") {{ $donation->status }} @else {{ $donation->status }} @endif Update Delete
@endsection