@extends('admin.includes.master-admin') @section('content')
{{--
--}} {{-- Add New Service--}} {{--
--}}

Customers

@if(Session::has('message'))
× {{ Session::get('message') }}
@endif
@foreach($customers as $customer) @endforeach
Customer Name Customer Email Phone Address Status Actions
{{$customer->name}} {{$customer->email}} {{$customer->phone}} {{$customer->address}} @if($customer->status != 0) Active @else Banned @endif
{{csrf_field()}} View Details Send Email
@stop @section('footer') @stop