@extends('common.dashboard') @section('title','Volunteers') @section('content')

Volunteers data

@include('common.volunteer.search_form')
@foreach($volunteers as $key=>$row) @endforeach
# photo Name Phone eMail Address
{{$key+1}} {{$row->fname}} {{$row->lname}} {{$row->phone}} {{$row->email}} @if(strlen($row->address)>30) {{substr($row->address, 0, 30)}} ... @else {{$row->address}} @endif
@endsection