hyvor/hyvor-blogs-laravel

For self-hosting a Hyvor Blogs blog on a Laravel application

Maintainers

👁 HYVOR

Package info

github.com/hyvor/hyvor-blogs-laravel

pkg:composer/hyvor/hyvor-blogs-laravel

Statistics

Installs: 2 697

Dependents: 0

Suggesters: 0

Stars: 4

Open Issues: 1

0.0.4 2025-02-19 00:16 UTC

Requires

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 6ea204719b5359486b4262d0a879793f8c659ff7

  • Supun <supun.woop@hyvor.com>

This package is auto-updated.

Last update: 2026-06-19 03:16:36 UTC


README

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.

Installation

composer require hyvor/hyvor-blogs-laravel

Configuration

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' => [],
 ],
 ],
];