芝麻web文件管理V1.00
编辑当前文件:/home/shaabmuni/crm/resources/views/notifications-all.blade.php
@extends('themes.default1.agent.layout.agent') @section('Users') class="active" @stop @section('HeadInclude') @stop @section('user-bar') active @stop @section('user') class="active" @stop @section('PageHeader')
{!! Lang::get('lang.notifications') !!}
@stop @section('content') @if(Session::has('success'))
Alert!
Success.
×
{{Session::get('success')}}
@endif @if(Session::has('fails'))
Alert!
Failed.
×
{{Session::get('fails')}}
@endif
�
Alert!
{!! Lang::get('lang.view_all_notifications')!!}
Delete all
@if($notifications) @foreach($notifications->orderBy('created_at', 'desc')->paginate(10) as $notification) @if($notification->notification && $notification->notification->type && $notification->notification->type->type == 'registration') @if($notification->is_read == 1)
 
{!! $notification->notification->type->message !!}
{{ $notification -> created_at }}
@else
 
{!! $notification->notification->type->message !!}
{{ $notification123-> created_at }}
@endif @else @if($notification && $notification->notification && $notification->notification->type && $notification->is_read == 1)
 
{!! $notification->notification->type->message !!} with id "{!!$notification->notification->model->ticket_number!!}"
{{ $notification -> created_at }}
@elseif($notification->notification && $notification->notification->model)
 
{!! $notification->notification->type->message !!} with id "{!!$notification->notification->model->ticket_number!!}"
{{ $notification -> created_at }}
@endif @endif @endforeach @else
{!! Lang::get('lang.no_notification_available') !!}
@endif {!!$notifications->paginate(10)->render()!!}
@stop