@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('content') @if(Session::has('success'))
Alert! Success. {{Session::get('success')}}
@endif @if(Session::has('fails'))
Alert! Failed. {{Session::get('fails')}}
@endif

Notification Page

    @if(count($notifications)) @foreach($notifications as $notification) @if($notification->type == 'registration')
  • @else
  • @endif @endforeach @else
  • No Notifications Available!
  • @endif
@stop