@extends('layouts.app') @section('content')
@if(Session::get('success', false))

{{ Session::get('success') }}

@endif
@foreach($volunteers as $volunteer)

{{$volunteer->name}}


تم الرفع في : {{ date('Y-m-d', strtotime($volunteer->created_at)) }}

@endforeach
@endsection