eyupinann / quote
A simple quote world composer package
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/eyupinann/quote
This package is auto-updated.
Last update: 2025-09-24 23:41:21 UTC
README
This package content is developed to set content by page
Installation
Use the package manager package to install foobar.
composer require eyupinann/quote
We add this code to the providers part in config/app.php so we import the providers part of our package
eyupinann\Quote\BlogPackageServiceProvider::class
We run our provider file with this command. Our migration and view files are created
php artisan vendor:publish --provider="eyupinann\Quote\BlogPackageServiceProvider" --tag="page"
php artisan migrate
Usage
Using this function, we send the page name and content to the relevant function and return it.
use eyupinann\Quote\Index; public function App(Index $index) { return $index->page('About','info@google.com'); }
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.