mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-12-15 22:55:40 -05:00
* Refactor pivot table accessors * Add select2 for client - country selector * Fixes for client contact update * implement ctrans() function across application * Increase custom fields to 4 across the application * Refactor: remove repos calling other repos, implement 4 custom values across application * include querying the custom values in the client list * Fix null custom value labels * Scaffold for client - show view * Working on Client Show
24 lines
466 B
PHP
24 lines
466 B
PHP
@extends('layouts.master', ['header' => $header])
|
|
|
|
@section('body')
|
|
<main class="main" id="client_show">
|
|
|
|
<!-- Breadcrumb-->
|
|
{{ Breadcrumbs::render('clients.show', $client) }}
|
|
|
|
<vue-toastr ref="toastr"></vue-toastr>
|
|
|
|
<div class="container-fluid">
|
|
|
|
|
|
<client-show :client="{{ $client }}" :company="{{ $company }}"></client-show>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
<script defer src=" {{ mix('/js/client_show.min.js') }}"></script>
|
|
|
|
@endsection |