mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
dde1cd6cfb
* Fixes for MakesHash trait * Client List DataTables * Data table dependencies * Confirmation URLs * Wire up firing events for notification emails
32 lines
431 B
PHP
32 lines
431 B
PHP
@extends('layouts.master')
|
|
|
|
@section('header')
|
|
@include('header')
|
|
@endsection
|
|
|
|
|
|
@section('sidebar')
|
|
@include('sidebar')
|
|
@endsection
|
|
|
|
@section('body')
|
|
<main class="main">
|
|
<!-- Breadcrumb-->
|
|
{{ Breadcrumbs::render('dashboard') }}
|
|
<div class="container-fluid">
|
|
|
|
|
|
|
|
|
|
</div>
|
|
</main>
|
|
|
|
@include('dashboard.aside')
|
|
|
|
@endsection
|
|
|
|
@section('footer')
|
|
@include('footer')
|
|
@endsection
|
|
|