@extends('layouts.app') @section('title', trans('customer.list')) @section('content')
| {{ trans('app.table_no') }} | {{ trans('customer.name') }} | {{ trans('contact.email') }} | {{ trans('contact.phone') }} | {{ trans('app.status') }} | {{ trans('app.action') }} |
|---|---|---|---|---|---|
| {{ $customers->firstItem() + $key }} | {{ $customer->name }} | {{ $customer->email }} | {{ $customer->phone }} | {{ $customer->is_active }} | {!! link_to_route( 'customers.index', trans('app.edit'), ['action' => 'edit', 'id' => $customer->id] + Request::only('page', 'q'), ['id' => 'edit-customer-' . $customer->id] ) !!} | {!! link_to_route( 'customers.index', trans('app.delete'), ['action' => 'delete', 'id' => $customer->id] + Request::only('page', 'q'), ['id' => 'del-customer-' . $customer->id] ) !!} |