Skip to content

Latest commit

 

History

History
56 lines (43 loc) · 1.47 KB

README.md

File metadata and controls

56 lines (43 loc) · 1.47 KB

Screenshot

Packagist License Packagist Version Packagist Dependency Version Packagist Dependency Version

Introduction

Hello fellow developers, using this package you can display sweet alerts.

How to Install

composer require codingwithrk/rk-sweet-alert

Add this before body closing tag

<x-rk-sweet-alert/>

After that in your controller

session()->flash('rk-alert', [
    'title' => 'Are you sure?',
    'text' => 'You won\'t be able to revert this!',
    'icon' => 'warning',
    'confirmButtonText' => 'Yes, delete it!',
    'showCancelButton' => true,
    'confirmButtonColor' => '#3085d6',
    'cancelButtonColor' => '#d33',
]);

publish vendor config file

php artisan vendor:publish --provider="Codingwithrk\RkSweetAlert\RkSweetAlertServiceProvider" --tag="config"

License

This is open-sourced software licensed under the MIT license.