PHP Classes

File: resources/views/_message.blade.php

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   Laravel Markdown Blog   resources/views/_message.blade.php   Download  
File: resources/views/_message.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Laravel Markdown Blog
Publish blog posts with content in Markdown format
Author: By
Last change:
Date: 1 year ago
Size: 441 bytes
 

Contents

Class file image Download
@if (Session::has('success'))
    <div class="bg-green-100 border border-solid border-green-500 mt-2 rounded">
        <p class="p-2 text-green-500">
            {!! Session::get('success') !!}
        </p>
    </div>
@endif

@if (Session::has('error'))
    <div class="bg-red-100 border border-solid border-red-500 mt-2 rounded">
        <p class="p-2 text-red-600">
            {!! Session::get('error') !!}
        </p>
    </div>
@endif