@extends('frontend.layouts.master') @section('title') Agents @endsection @section('main-content')
@if($agents) @foreach($agents as $agent)
@php $photo=explode(',',$agent->photo); @endphp

{{$agent->name}}

{{$agent->location}}

{{$agent->phone}}

{{$agent->email}}

@endforeach @endif
@endsection