{{-- @php
$countInbox = collect(DB::select("select sum(x.jml_inbox) as jml_inbox
from
(select
count(id) as jml_inbox
from
master_meeting_participant mmp
where
participant_id = :id
and is_read = false
union
select
count(id) as jml_inbox
from
master_task_inbox mti
where
mti.pic_id = :id
and mti.is_read = false) as x",['id' => Auth::user()->id]))->first();
@endphp --}}
{{--