mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
17 lines
517 B
PHP
17 lines
517 B
PHP
@extends('portal.ninja2020.layout.app')
|
|
@section('meta_title', ctrans('texts.dashboard'))
|
|
|
|
@section('header')
|
|
@if(!empty($client->getSetting('custom_message_dashboard')))
|
|
@component('portal.ninja2020.components.message')
|
|
{!! CustomMessage::client($client)
|
|
->company($client->company)
|
|
->message($client->getSetting('custom_message_dashboard')) !!}
|
|
@endcomponent
|
|
@endif
|
|
@endsection
|
|
|
|
@section('body')
|
|
This page is empty, sad and alone.
|
|
@endsection
|