You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
590 B
16 lines
590 B
@extends('layouts.app')
|
|
|
|
@section('title', trans('customer.show'))
|
|
|
|
@section('content')
|
|
<h1 class="page-header">
|
|
<div class="pull-right">
|
|
{!! link_to_route('customers.edit', trans('customer.edit'), [$customer->id], ['id' => 'edit-customer-' . $customer->id, 'class' => 'btn btn-warning']) !!}
|
|
{!! link_to_route('customers.index', trans('customer.back_to_index'), [], ['class' => 'btn btn-default']) !!}
|
|
</div>
|
|
|
|
{{ $customer->name }} <small>{{ trans('customer.show') }}</small>
|
|
</h1>
|
|
@include('customers.partials.nav-tabs')
|
|
@yield('content-customer')
|
|
@endsection
|