1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/resources/views/client/show.blade.php
Benjamin Beganović 14577fdfd0
Remove breadcrumbs (#3699)
* Remove breadcrumbs

* remove config
2020-05-14 11:02:23 +10:00

20 lines
398 B
PHP

@extends('layouts.master', ['header' => $header])
@section('body')
<main class="main" id="client_show">
<vue-toastr ref="toastr"></vue-toastr>
<div class="container-fluid">
<client-show :client="{{ $client }}" :company="{{ $company }}" :meta="{{ $meta }}"></client-show>
</div>
</main>
<script defer src=" {{ mix('/js/client_show.min.js') }}"></script>
@endsection