@extends('layouts/marketing_layout') @section('title', '| Client') @section('content') @include('successMsg')

Customer List

{{ csrf_field() }} @foreach($billingClients as $billingClient) @endforeach
SL# Company Name Short Name Contact Person Designation Phone Mobile Email Address Address Action
{{++$no}} {{$billingClient->clientCompanyName}} {{$billingClient->companyShortName}} {{$billingClient->clientContactPerson}} {{$billingClient->contactPersonDesigntion}} {{$billingClient->phone}} {{$billingClient->mobile}} {{$billingClient->email}} {{$billingClient->address}}   @php $hasAssignedSalesPerson = DB::table('marketings')->where('clientCompanyId', $billingClient->id)->exists(); @endphp @if ($hasAssignedSalesPerson) @else @endif
@include('dataTableScript') @endsection