Git Product home page Git Product logo

lara-izitoast's Introduction

Lara-Izitoast : Laravel Notification Package

Latest Version on Packagist Total Downloads

Demo Image

This is a laravel notification wrapper build with http://izitoast.marcelodolce.com javascript library.

How to use this package

Config

  • Change the configuration on lara-izitoast.php config dir.

  • Get the package via composer

composer require appslabke/lara-izitoast
  • if you are not using Laravel 5.5 or higher add the service provider in your app.php under providers, in config dir.
'providers' => [
    LaraIzitoast\LaraIzitoastServiceProvider::class,
]

If you are using Laravel 5.5 and above, the package will be auto-discovered by laravel

  • Publish Lara-Izitoast package

php artisan vendor:publish --provider="LaraIzitoast\LaraIzitoastServiceProvider"

  • http://izitoast.marcelodolza.com CSS and JS files will be published in your public dir.

  • This will also create a config file. You can change the notification size from config

  • On your layout blade add the files

<head>
   .....
   <link href="{{ asset('css/iziToast.css') }}" rel="stylesheet">
   .....
</head>
    <body>
    .....
    <script src="{{ asset('js/iziToast.js') }}"></script>
    .....
    <body/>
    
  • Include the package view file in Layout blade below the iziToast js

@include('vendor.lara-izitoast.toast')

Let's make a toast

  • Quick way to make a toast (notification)

notify("Quick notification");

or

notify("Let's make a toast","Toast","info","topRight");

  • Notification Methods

notify()->success("Message","Title","position", "icon);

notify()->success("Success notification test","Success","topRight");

notify()->error("Error notification test","Error","topLeft");

notify()->warning("Warning notification test","Warning","bottomLeft");

notify()->info("Info notification test","Info","bottomRight");

return view('welcome');

  • And that's it.

Contributing & License

Lara-Izitoast is distributed under the MIT license.

About Apps:Lab

https://appslab.co.ke

lara-izitoast's People

Contributors

marvinhosea avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.