@extends('master.layout.dashboard') @section('title', 'All Estate Agents') @section('content')

All Estate Agents


@foreach($agent as $agents) @endforeach
# Name Real Estate Name Mobile City Address Status Action Edit Delete
{{ $loop->iteration }} {{ $agents->name}} {{ $agents->real_estate_name}} {{$agents->mobile}} {{$agents->city}} {{$agents->address}} @if($agents->status == '1') Active @endif @if($agents->status == '0') InActive @endif
@csrf
@endsection @section('javascript') @endsection