@extends('backend.layouts.app') @section('title', app_name() . ' | ' . __('strings.backend.customers.title')) @section('content')
@lang('strings.backend.customers.header') {{ $logged_in_user->name }}!
{{ html()->form('POST', route('admin.customers'))->class('form-horizontal')->open() }}
{{ html()->label(__('validation.attributes.backend.customers.hasWebsite'))->class('col-md-2 form-control-label')->for('hasWebsite') }}
{{ html()->label(__('validation.attributes.backend.customers.status'))->class('col-md-2 form-control-label')->for('status') }}
{{ html()->label(__('validation.attributes.backend.customers.services'))->class('col-md-2 form-control-label')->for('services') }}
{{ form_submit(__('buttons.general.crud.update')) }}
{{ html()->form()->close() }}
@foreach ($customers as $customer) @endforeach
Checkatrade ID Name Telephone Mobile
{!! $customers->total() !!} {{ trans_choice('labels.backend.customers.table.total', $customers->total()) }}
{!! $customers->render() !!}
@endsection