{"id":33957102,"url":"https://github.com/plusemon/notify","last_synced_at":"2025-12-12T20:56:39.037Z","repository":{"id":50044599,"uuid":"374138274","full_name":"plusemon/notify","owner":"plusemon","description":"Flexible Toastr JS Alert System for PHP/Laravel.","archived":false,"fork":false,"pushed_at":"2022-06-09T10:08:25.000Z","size":30,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-03T04:42:06.227Z","etag":null,"topics":["laravel","laravel-package","php","toastr"],"latest_commit_sha":null,"homepage":"https://packagist.org/packages/plusemon/notify","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/plusemon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-06-05T14:43:58.000Z","updated_at":"2023-05-24T03:51:25.000Z","dependencies_parsed_at":"2022-09-14T09:10:43.430Z","dependency_job_id":null,"html_url":"https://github.com/plusemon/notify","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/plusemon/notify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plusemon%2Fnotify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plusemon%2Fnotify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plusemon%2Fnotify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plusemon%2Fnotify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/plusemon","download_url":"https://codeload.github.com/plusemon/notify/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plusemon%2Fnotify/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27691390,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-12T02:00:06.775Z","response_time":129,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["laravel","laravel-package","php","toastr"],"created_at":"2025-12-12T20:56:38.332Z","updated_at":"2025-12-12T20:56:39.029Z","avatar_url":"https://github.com/plusemon.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Toastr JS Alert Notification System for PHP/Laravel\n\n\n### 1. Install\n```\ncomposer require plusemon/notify\n```\n    \n### 2. Add resources\n\n   \n```html\n\u003c!DOCTYPE html\u003e\n\u003chtml\u003e\n\n\u003chead\u003e\n    \u003cmeta charset=\"utf-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1\"\u003e\n    \u003ctitle\u003eLaravel Notify\u003c/title\u003e\n    \u003clink rel=\"stylesheet\" href=\"https://cdn.bootcss.com/toastr.js/latest/css/toastr.min.css\" /\u003e\n\u003c/head\u003e\n\n\u003cbody\u003e\n\n\u003c!-- Main Contents --\u003e\n\u003ch1\u003eLaravel Toastr Notify Notification\u003c/h1\u003e\n\n\u003c!-- jQuery CDN --\u003e\n\u003cscript src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js\"\u003e\u003c/script\u003e\n\n\u003c!-- Toastr script CDN --\u003e\n\u003cscript src=\"https://cdn.bootcss.com/toastr.js/latest/js/toastr.min.js\"\u003e\u003c/script\u003e\n\n\u003c!-- Toastr Scripts render --\u003e\n{!! Notify::message() !!}\n\n\u003c/body\u003e\n\n\u003c/html\u003e\n\n```\n\n\n### 3. Usage\n\n```php\n\u003c!--  Example   --\u003e\nNotify::success('You have successfully added Notify alert system');\nnotify()-\u003einfo('Info message with helper function');\n\n\u003c!--  Using Facade    --\u003e\nNotify::info('message', 'title', ['options']);\nNotify::success('message', 'title', ['options']);\nNotify::warning('message', 'title', ['options']);\nNotify::error('message', 'title', ['options']);\n\n\u003c!--   Clear   --\u003e\nNotify::clear();\n```\n    \n\u003c!--  redirect - shorter redirect back with notify  --\u003e\nreturn Notify::info('Info redirect back with message by helper function')-\u003eback();\nreturn notify()-\u003einfo('Info redirect with message by helper function')-\u003eredirect('/');\n\n\n    \n## You have successfully installed notify system. 😃\n \n\n### Configuration\n\nAdd the service provider to `config/app.php`\n\n```php\nPlusemon\\Notify\\NotifyServiceProvider::class,\n```\n\nOptionally include the Facade in config/app.php if you'd like.\n\n```php\n'Notify'  =\u003e Plusemon\\Notify\\Facades\\Notify::class,\n```\n\n### Options\n\nPublish the config file\n\n    php artisan vendor:publish --provider=Plusemon\\Notify\\NotifyServiceProvider\n\nFor More visit [toastr's documentation](http://codeseven.github.io/toastr/demo.html) to custom your need.\n\n### Dependencies\n\njQuery [toast](https://github.com/CodeSeven/toastr), you need to add css and js to your html.\n\n### MIT\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplusemon%2Fnotify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fplusemon%2Fnotify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplusemon%2Fnotify/lists"}