PHP Classes

File: App/View/admin/includes/notification.php

Recommend this page to a friend!
  Classes of Ahmed Saad   Simple PHP MVC Framework   App/View/admin/includes/notification.php   Download  
File: App/View/admin/includes/notification.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Simple PHP MVC Framework
Developing Web applications using the MVC pattern
Author: By
Last change:
Date: 1 year ago
Size: 474 bytes
 

Contents

Class file image Download
<? if( $this->notification ): ?>

    <div class="container">
        <div class="row">
       
            <div class="col-sm-8 col-sm-offset-2 col-lg-6 col-lg-offset-3">
                <div class="alert alert-{{ $this->notification['type'] }} alert-dismissable text-center">
                        {!! $this->notification[ 'message' ] !!}
                        <button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>
                </div>
            </div>
        </div>
    </div>
   
<? endif; ?>