mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
bde276ad67
* Imports improvements: - Fix sorting - Fix duplicate imports (Cannot use App\Http\Controllers\BaseController as BaseController because the name is already in use) * Wrap up, sending migration file: - Removed 'enable_invoice_quantity'
17 lines
533 B
PHP
17 lines
533 B
PHP
@extends('header')
|
|
|
|
@section('content')
|
|
@parent
|
|
@include('accounts.nav', ['selected' => ACCOUNT_MANAGEMENT])
|
|
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">{!! trans('texts.welcome_to_the_new_version') !!}</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
Migration has started. We'll update you with status, on your company e-mail.
|
|
<!-- Note: This message needs edit, like next instructions, etc. -->
|
|
</div>
|
|
</div>
|
|
|
|
@stop |