Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hyvor/hyvor-blogs-laravel
Add a blog to your Laravel application's /blog
https://github.com/hyvor/hyvor-blogs-laravel
Last synced: 27 days ago
JSON representation
Add a blog to your Laravel application's /blog
- Host: GitHub
- URL: https://github.com/hyvor/hyvor-blogs-laravel
- Owner: hyvor
- License: mit
- Created: 2022-03-13T17:24:14.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-25T21:10:40.000Z (3 months ago)
- Last Synced: 2024-10-08T13:52:52.193Z (3 months ago)
- Language: PHP
- Homepage: https://hyvor.com/blog/laravel-blog
- Size: 172 KB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# hyvor-blogs-laravel
This a Laravel package that provides a simple way to add a blog to your Laravel application using [Hyvor Blogs blogging platform](https://blogs.hyvor.com).
See the tutorial on our Blog. 👇
[**Adding a blog to your Laravel Application**](https://hyvor.com/blog/laravel-blog).
## Installation
```bash
composer require hyvor/hyvor-blogs-laravel
```## Configuration
```bash
php artisan vendor:publish --provider="Hyvor\HyvorBlogs\HyvorBlogsServiceProvider" --tag="config"
```This will create a `hyvorblogs.php` file in your `config` directory.
```php
[
[
'subdomain' => '',
'delivery_api_key' => '',
'webhook_secret' => null,
'route' => '/blog',
'cache_store' => null,
'middleware' => [],
],
],
];
```