Added new blade alert components..
This commit is contained in:
14
resources/views/components/alert/border.blade.php
Normal file
14
resources/views/components/alert/border.blade.php
Normal file
@ -0,0 +1,14 @@
|
||||
<x-alert
|
||||
border
|
||||
:rounded="$rounded"
|
||||
|
||||
:color="$color"
|
||||
:icon="$icon"
|
||||
|
||||
:title="$title"
|
||||
:description="$description"
|
||||
:list="$list"
|
||||
|
||||
:actions="$actions"
|
||||
:dismiss="$dismiss"
|
||||
/>
|
14
resources/views/components/alert/danger.blade.php
Normal file
14
resources/views/components/alert/danger.blade.php
Normal file
@ -0,0 +1,14 @@
|
||||
<x-alert
|
||||
color="red"
|
||||
icon="error"
|
||||
|
||||
:title="$title"
|
||||
:description="$description"
|
||||
:list="$list"
|
||||
|
||||
:rounded="$rounded"
|
||||
:border="$border"
|
||||
|
||||
:actions="$actions"
|
||||
:dismiss="$dismiss"
|
||||
/>
|
14
resources/views/components/alert/info.blade.php
Normal file
14
resources/views/components/alert/info.blade.php
Normal file
@ -0,0 +1,14 @@
|
||||
<x-alert
|
||||
color="blue"
|
||||
icon="info"
|
||||
|
||||
:title="$title"
|
||||
:description="$description"
|
||||
:list="$list"
|
||||
|
||||
:rounded="$rounded"
|
||||
:border="$border"
|
||||
|
||||
:actions="$actions"
|
||||
:dismiss="$dismiss"
|
||||
/>
|
14
resources/views/components/alert/success.blade.php
Normal file
14
resources/views/components/alert/success.blade.php
Normal file
@ -0,0 +1,14 @@
|
||||
<x-alert
|
||||
color="green"
|
||||
icon="check_circle"
|
||||
|
||||
:title="$title"
|
||||
:description="$description"
|
||||
:list="$list"
|
||||
|
||||
:rounded="$rounded"
|
||||
:border="$border"
|
||||
|
||||
:actions="$actions"
|
||||
:dismiss="$dismiss"
|
||||
/>
|
14
resources/views/components/alert/warning.blade.php
Normal file
14
resources/views/components/alert/warning.blade.php
Normal file
@ -0,0 +1,14 @@
|
||||
<x-alert
|
||||
color="yellow"
|
||||
icon="warning"
|
||||
|
||||
:title="$title"
|
||||
:description="$description"
|
||||
:list="$list"
|
||||
|
||||
:rounded="$rounded"
|
||||
:border="$border"
|
||||
|
||||
:actions="$actions"
|
||||
:dismiss="$dismiss"
|
||||
/>
|
Reference in New Issue
Block a user