@extends('common.dashboard') @section('title','Volunteers') @section('content')
| # | photo | Name | Phone | 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 |
|