@extends('admin.layouts.master') @section('title')Volunteers @endsection @section('css') @endsection @section('content') @component('components.breadcrumb') @slot('li_1') Volunteers @endslot @slot('title')Volunteers @endslot @endcomponent
@foreach($volunteers as $key => $volunteer) @endforeach
Sr. No. Name Email Date Time
{{ $key+1 }} {{ $volunteer->name }} {{ $volunteer->email }} {{ date('d-m-Y', strtotime($volunteer->date)) }} {{ date('h:i a', strtotime($volunteer->time)) }}
@endsection @section('script') @endsection