@extends('backend.layouts.app') @section('title') {{ 'Notifications | '.env('APP_NAME') }} @endsection @section('breadcrumbs') @include('backend.layouts.partials.breadcrumbs',['current' => 'Notifications']) @endsection @push('after-css') @endpush @section('content')
alert alert-*colors*
for
dezierclose
class
<!-- Alert with different color -->
<div class="alert alert-success">This is an example top alert. You can edit what u wish. </div>
<!-- Dissmissal Alert -->
<div class="alert alert-success"> <i class="ti-user"></i> This is an example top alert. You can edit what u wish.
<button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button>
</div>
<!-- Alert with image / icon -->
<div class="alert alert-warning"> <img src="https://via.placeholder.com/600x600?text=Image" width="30" class="rounded-circle" alt="img"> This is an example top alert. You can edit what u wish.
<button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button>
</div>
alert-rounded
class to the alert
<!-- Alert with rounded corner -->
<div class="alert alert-success alert-rounded"> <i class="ti-user"></i> This is an example top alert. You can edit what u wish.
<button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button>
</div>
<!-- Alert with content -->
<div class="alert alert-success">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button>
<h3 class="text-success"><i class="fa fa-check-circle"></i> Success</h3> This is an example top alert. You can edit what u wish. Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.
</div>