@extends('backends.layouts.master_layout') @section('title','Clients') @section('page_heading','Clients') @section('content')
@include('backends.includes.notification')
Add
@foreach($clients as $k => $client) @endforeach
SL Company Name Contact Person Mobile email Username Note Status Action Last Login
{{$k+1}} {{$client->company_name}} {{$client->contact_person}} {{$client->mobile}} {{$client->email}} {{$client->user_name}} @if($client->notes != "") {{$client->notes}} @else N/A @endif @if($client->is_active == 0) Disabled @else Enabled @endif Payment History @if(!is_null($client->lastLoginActivity)) {{date('d/m/y h:i A',strtotime($client->lastLoginActivity?->created_at))}} @else N/A @endif
{{$clients->links()}}
@include('.backends.includes.delete-modal') @endsection