This a Laravel package that provides a simple way to add a blog to your Laravel application using Hyvor Blogs blogging platform.
See the tutorial on our Blog. 👇
Adding a blog to your Laravel Application.
composer require hyvor/hyvor-blogs-laravel
php artisan vendor:publish --provider="Hyvor\HyvorBlogs\HyvorBlogsServiceProvider" --tag="config"
This will create a hyvorblogs.php
file in your config
directory.
<?php
return [
'blogs' => [
[
'subdomain' => '',
'delivery_api_key' => '',
'webhook_secret' => null,
'route' => '/blog',
'cache_store' => null,
'middleware' => [],
],
],
];