https://github.com/divineomega/clippy-for-laravel
📎 Clippy for Laravel
https://github.com/divineomega/clippy-for-laravel
clippy laravel
Last synced: over 1 year ago
JSON representation
📎 Clippy for Laravel
- Host: GitHub
- URL: https://github.com/divineomega/clippy-for-laravel
- Owner: DivineOmega
- License: lgpl-3.0
- Created: 2019-09-29T22:16:08.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-10-10T21:12:34.000Z (almost 7 years ago)
- Last Synced: 2025-03-16T16:11:43.986Z (over 1 year ago)
- Topics: clippy, laravel
- Language: PHP
- Homepage:
- Size: 447 KB
- Stars: 17
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 📎 Clippy for Laravel

This package brings possibly the most important feature of all time to the Laravel
framework. With this easy to use package, anyone can make use of the all powerful
Clippy assistant within their Laravel applications.
## Installation
Just run the following Composer command from the root of your project.
```bash
composer require divineomega/clippy-for-laravel
```
## Usage
Just add the following to any Blade file.
```blade
@clippy('It looks like you are writing a Laravel app. Would you like help with that?')
```
It also works with variables so you pass all important data down from your controllers
or view composers.
```blade
@clippy($earthShatteringlyImportantMessage);
```