@extends('adminlte::page')
@section('title', $title)
@section('content_header')
{{@$title}}
@stop
@section('content')
@include('admin.includes.notification')
| Id |
Name |
Email |
Contact No |
City |
Status |
Action |
@if(count(@$result)==0)
| No record found. |
@else
@foreach(@$result as $row)
| {{++$j}} |
{{$row->name}} |
{{$row->email}} |
{{$row->contact_no}} |
{{$row->city}} |
|
|
@endforeach
@endif
@stop