PHP Classes

File: resources/views/frontend/layouts/partials/flash-messages.blade.php

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   LaraCMS   resources/views/frontend/layouts/partials/flash-messages.blade.php   Download  
File: resources/views/frontend/layouts/partials/flash-messages.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: LaraCMS
Content management system based on Laravel
Author: By
Last change:
Date: 1 year ago
Size: 519 bytes
 

Contents

Class file image Download
@if (Session::has('success'))
<script>
    new Noty({
        theme : 'sunset',
        type : 'success',
        text : "<h2>Success</h2>{!! Session::get('success') !!}",
        layout : 'topCenter',
        timeout: 5000
    }).show();
</script>
@endif

@if (Session::has('error'))
<script>
    new Noty({
        theme : 'sunset',
        type : 'error',
        text : "<h2>Error</h2>{!! Session::get('error') !!}",
        layout : 'bottomCenter',
        timeout: 5000
    }).show();
</script>
@endif