@extends('layouts.app') @section('title', trans('customer.list')) @section('content')
| {{ trans('app.table_no') }} | {{ trans('customer.name') }} | {{ trans('contact.email') }} | {{ trans('contact.phone') }} | {{ trans('customer.projects_count') }} | {{ trans('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 !!} |