@extends('backend.layouts.master') @section('content')

Volunteers List

Total Doctors : {{ $volunteerlist->count(); }}
@foreach ($volunteerlist as $volunteer) {{-- --}} @endforeach
Name Mobile Email Country State Timestamp Action
{{ $volunteer->fname }} {{ $volunteer->lname }} {{ $volunteer->phone }} {{ $volunteer->email }} {{ isset($volunteer->country->name) ? $volunteer->country->name : 'not selected' }} {{ isset($volunteer->state->name) ? $volunteer->state->name : 'not selected' }} {{ isset($volunteer->city->name) ? $volunteer->city->name:'not selected' }}{{ $volunteer->created_at->format('d-m-Y') }}
@endsection