@extends('layouts.app') @section('body_content')

All CRM

@if($errors->any()) {!! implode('', $errors->all('
:message
')) !!} @endif
@foreach($crms as $crm) @php if(!is_null(optional($crm)->profile_photo_path) && file_exists(optional($crm)->profile_photo_path)){ $photo = optional($crm)->profile_photo_path; }else{ $photo = 'images/no-profile.png'; } @endphp @endforeach
Photo CRM Name Email Role Status Actions
{{$crm->name}} {{$crm->email}} {{str_replace(Auth::user()->shop_id."#","", $crm->role_name)}} @if($crm->is_active == 1) Active @else Deactive @endif @if($crm->is_active != 1)   Active   @else Deactive @endif Lead Dashboard
@endsection