-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from AXN-Informatique/develop
Prepare 3.0.0
- Loading branch information
Showing
11 changed files
with
373 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Default vue | ||
|-------------------------------------------------------------------------- | ||
| | ||
| The name of the blade view to use by default : | ||
| | ||
| - 'notifier::bootstrap3' bootstrap3 (requiert Bootstrap 3) deprecated | ||
| - 'notifier::bootstrap3-advanced' bootstrap3-advanced (requiert Bootstrap 3) deprecated | ||
| - 'notifier::bootstrap4' bootstrap4 (requiert Bootstrap 4) | ||
| - 'notifier::bootstrap4-advanced' bootstrap4-advanced (requiert Bootstrap 4) | ||
| - 'notifier::pnotify' pnotify (requiert PNotify 3) deprecated | ||
| - 'notifier::pnotify4' pnotify4 (requiert PNotify 4) deprecated | ||
| - 'notifier::pnotify5' pnotify5 (requiert PNotify 5) | ||
| - 'notifier::sweetalert2' sweetalert2 (requiert SweetAlert 2) incomming | ||
| - 'custom-vue' your cutom one | ||
| | ||
*/ | ||
|
||
'default_view' => 'notifier::pnotify5', | ||
|
||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
|
||
<div class="alert alert-{!! ($type === 'error' ? 'danger' : $type) !!} alert-dismissible fade show" role="alert"> | ||
<div class="d-flex align-items-center"> | ||
@if ($type === 'success') | ||
<span class="fa-stack"> | ||
<i class="fal fa-circle fa-stack-2x"></i> | ||
<i class="fal fa-check fa-stack-1x"></i> | ||
</span> | ||
@elseif ($type === 'info') | ||
<span class="fa-stack"> | ||
<i class="fal fa-circle fa-stack-2x"></i> | ||
<i class="fal fa-info fa-stack-1x"></i> | ||
</span> | ||
@elseif ($type === 'warning') | ||
<i class="fal fa-exclamation-triangle fa-2x"></i> | ||
@elseif ($type === 'error') | ||
<i class="fal fa-ban fa-2x"></i> | ||
@endif | ||
|
||
@if (!empty($title)) | ||
<strong>{{ $title }}</strong><br> | ||
@endif | ||
|
||
{!! $message !!} | ||
</div> | ||
|
||
<button type="button" class="close" data-dismiss="alert" aria-label="{!! trans('comon::action.close') !!}"> | ||
<span aria-hidden="true">×</span> | ||
</button> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
<div class="alert alert-{!! ($type === 'error' ? 'danger' : $type) !!}" role="alert"> | ||
@if (!empty($title)) | ||
<strong>{{ $title }}</strong><br> | ||
@endif | ||
|
||
{{ $message }} | ||
</div> |
Oops, something went wrong.