@extends('layouts.dashboard.layout') @section('content')
@if(Session::has('flash_message_error'))
{!! session('flash_message_error') !!}
@endif @if(Session::has('flash_message_success'))
{!! session('flash_message_success') !!}
@endif

Customer List

@foreach($data as $key => $item) @endforeach
Customer Name Job ID Phone Email TimeZone Action
{{$item['name']}} {{$item['job_id']}} {{$item['phone']}} {{$item['email']}} {{$item['time_zone']}} Edit  
@endsection