1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/resources/views/portal/ninja2020/dashboard/index.blade.php

17 lines
495 B
PHP
Raw Normal View History

2020-03-23 18:10:42 +01:00
@extends('portal.ninja2020.layout.app')
@section('meta_title', ctrans('texts.dashboard'))
2020-03-23 18:10:42 +01:00
@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
2020-03-23 18:10:42 +01:00
@section('body')
2021-01-13 22:17:47 +01:00
Coming soon.
2020-03-23 18:10:42 +01:00
@endsection