@extends($extends) @section('content') @if(Session::get('customer') == 1)
@lang('routes.CUST_PANEL_PAGE_NOTIFICATIONS_MSG_LATEST_UPDATES') @if(!empty($LastUpdated)) {{cus_lang("CUST_PANEL_PAGE_NOTICEBOARD_MSG_UPDATED")}} {{\Carbon\Carbon::createFromTimeStamp(strtotime($LastUpdated))->diffForHumans() }} @else @lang('routes.CUST_PANEL_PAGE_NOTICEBOARD_MSG_NO_UPDATES_FOUND') @endif
@endif

@if(User::checkCategoryPermission('NoticeBoardPost','Add')) Add New @endif

@if(Session::get('customer') == 0)
@if(User::checkCategoryPermission('NoticeBoardPost','Edit'))
@endif
{{Form::select('Type',array('post-none'=>'None','post-error'=>'Error','post-info'=>'Information','post-warning'=>'Warning'),'',array("class"=>"select2 post_type"))}}
@endif
@stop