@extends('master.layout.dashboard')
@section('title', 'All Estate Agents')
@section('content')
| # |
Name |
Real Estate Name |
Mobile |
City |
Address |
Status |
Action |
Edit |
Delete |
@foreach($agent as $agents)
| {{ $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
|
|
|
|
@endforeach
@endsection
@section('javascript')
@endsection