mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
* Fix js dependencies * Breadcrumb implementation * Test for UniqueEmailRule Validation * reduce length of account_key to prevent key too long error * Fixes for travis - reduce user email length * Reduce all unique field lengths to 100 to prevent key overflow * Fix for Bank Model * Prevent a user from registering multiple account with one email address when using multiple databases
30 lines
429 B
PHP
30 lines
429 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
|
|
|
|
|