PHP Classes

File: resources/views/partials/messages.blade.php

Recommend this page to a friend!
  Classes of uche   Compex PHP Compound Interest Calculator   resources/views/partials/messages.blade.php   Download  
File: resources/views/partials/messages.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Compex PHP Compound Interest Calculator
Calculate compound interest on loans
Author: By
Last change:
Date: 2 years ago
Size: 468 bytes
 

Contents

Class file image Download
@if(isset ($errors) && count($errors) > 0)
    <div class="alert alert-danger">
        <ul style="padding-left: 0px;">
            @foreach($errors->all() as $error)
                <li style="list-style: none">{{ $error }}</li>
            @endforeach
        </ul>
    </div>
@endif
@foreach (['danger', 'warning', 'success', 'info'] as $key)
    @if(Session::has($key))
        <p class="alert alert-{{ $key }}">{{ Session::get($key) }}</p>
    @endif
@endforeach