@include('partials.warn_session', ['redirectTo' => '/dashboard'])
@if (Session::has('warning'))
{!! Session::get('warning') !!}
@endif
@if (Session::has('message'))
{{ Session::get('message') }}
@elseif (Session::has('news_feed_message'))
@endif
@if (Session::has('error'))
{!! Session::get('error') !!}
@endif
@if (!isset($showBreadcrumbs) || $showBreadcrumbs)
{!! Form::breadcrumbs(isset($entityStatus) ? $entityStatus : '') !!}
@endif
@yield('content')
@if (Utils::isNinjaProd())
@if (Auth::check() && Auth::user()->isTrial())
{!! trans(Auth::user()->account->getCountTrialDaysLeft() == 0 ? 'texts.trial_footer_last_day' : 'texts.trial_footer', [
'count' => Auth::user()->account->getCountTrialDaysLeft(),
'link' => link_to('/settings/account_management?upgrade=true', trans('texts.click_here'))
]) !!}
@endif
@else
{{ trans('texts.powered_by') }}
{{-- Per our license, please do not remove or modify this section. --}}
{!! link_to('https://www.invoiceninja.com/?utm_source=powered_by', 'InvoiceNinja.com', ['target' => '_blank', 'title' => 'invoiceninja.com']) !!} -
{!! link_to(RELEASES_URL, 'v' . NINJA_VERSION, ['target' => '_blank', 'title' => trans('texts.trello_roadmap')]) !!} |
@if (Auth::user()->account->hasFeature(FEATURE_WHITE_LABEL))
{{ trans('texts.white_labeled') }}
@else
{{ trans('texts.white_label_link') }}
{{ trans('texts.white_label_text', ['price' => WHITE_LABEL_PRICE])}}
{{ trans('texts.before') }}
{{ trans('texts.after') }}
@endif
@endif