@extends('layout.backend.main') @section('content')
@include('sidebars.customers')

{!!$customer->companyname!!}

{!!$customer->sign!!}
Ref. {!!$customer->name!!} {!!$customer->surname!!}

{!!$customer->address!!}
{!!$customer->postcode!!} {!!$customer->city!!} {!!$customer->province!!} - {!!$customer->country!!}

{!!$customer->telephone!!} {!!$customer->mobile!!}
{!!$customer->email!!}

@include('components.orders_table')
@foreach ($customer->deliveries as $delivery) @endforeach
{!!trans('x.Address')!!} {!!trans('x.City')!!} {!!trans('x.Country')!!} {!!trans('x.Options')!!}
{!!$delivery->address!!} {!!$delivery->city!!} {!!$delivery->province!!} {!!$delivery->country!!} {!! X::confirmModal( '', trans('x.Are you sure you want to delete this option?'), '/delivery/delete/'.$delivery->id, true, 'POST', 'btn btn-danger btn-xs', null ) !!}
@include('components.log_lines')
{{-- MODALS --}} @include('modals.customers.add_delivery') {{-- note: modal ADD CUSTOMER is in sidebars.customers --}} @foreach ($customer->deliveries as $delivery) @include('modals.customers.edit_delivery') @endforeach @stop