@if (Auth::check()) @endif
Painel administrativo
@php $contar = App\Notificacao::where( 'status',1)->count(); @endphp @if($contar >=1)
@endif
Notificações
@php $notificacoes = App\Notificacao::take(10)->get(); @endphp @foreach($notificacoes as $notificacao) @php $usu = App\UserAccount::where('id' ,$notificacao->id_usu )->first(); @endphp
{{$usu->name}}
{{$notificacao->title}}.
{{ date('d/m/Y',strtotime($notificacao->created_at)) }}
@endforeach
{{ Auth::user()->name }}
Conta
Sair
{{ csrf_field() }}
Dashboard
Menu
Home
Portais
6
Listar Portais
Templates
Usuarios admin
Sair
@yield('content')
@yield('post-script')