@extends('layouts.app') @section('title', __('customer.list')) @section('content')
| {{ __('app.table_no') }} | {{ __('customer.name') }} | {{ __('contact.email') }} | {{ __('contact.phone') }} | {{ __('customer.projects_count') }} | {{ __('app.status') }} |
|---|---|---|---|---|---|
| {{ $customers->firstItem() + $key }} | {{ $customer->nameLink() }} | {{ $customer->email }} | {{ $customer->phone }} | @if ($customer->projects_count) {{ link_to_route('customers.projects', $customer->projects_count, $customer) }} @endif | {!! $customer->status_label !!} |