codingwithrk/rk-sweet-alert

A Laravel package to implement SweetAlert.

1.0.0 2024-09-04 15:43 UTC

This package is auto-updated.

Last update: 2024-09-05 13:44:09 UTC


README

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.