mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +01:00
14 lines
298 B
PHP
14 lines
298 B
PHP
|
@extends('header')
|
||
|
|
||
|
@section('content')
|
||
|
|
||
|
<h3>View Client</h3>
|
||
|
|
||
|
{{ $client->name }}
|
||
|
|
||
|
<div class="pull-right">
|
||
|
{{ Button::link(URL::to('clients/' . $client->id . '/edit'), 'Edit Client') }}
|
||
|
{{ Button::primary_link(URL::to('invoices/create/' . $client->id), 'Create Invoice') }}
|
||
|
</div>
|
||
|
|
||
|
@stop
|