PHPackages                             blublog/blublog - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Admin Panels](/categories/admin)
4. /
5. blublog/blublog

ActiveLibrary[Admin Panels](/categories/admin)

blublog/blublog
===============

BLUblog is simple laravel blog package with admin panel.

721PHP

Since Sep 6Pushed 2y ago1 watchersCompare

[ Source](https://github.com/Philip1806/blublog)[ Packagist](https://packagist.org/packages/blublog/blublog)[ RSS](/packages/blublog-blublog/feed)WikiDiscussions master Synced 4d ago

READMEChangelogDependenciesVersions (1)Used By (0)

[![](https://camo.githubusercontent.com/2197872edae5310a0857f3d4f33c295605965d2520e283c02c924ff12e27bf22/68747470733a2f2f64656d6f2e626c75626c6f672e696e666f2f626c75626c6f672d75706c6f6164732f70686f746f732f323032332f392f2f506e74317a5463674c364a774c546e7859425a6f506e706f6331585a554250414f7649634e67696b2e6a7067)](https://camo.githubusercontent.com/2197872edae5310a0857f3d4f33c295605965d2520e283c02c924ff12e27bf22/68747470733a2f2f64656d6f2e626c75626c6f672e696e666f2f626c75626c6f672d75706c6f6164732f70686f746f732f323032332f392f2f506e74317a5463674c364a774c546e7859425a6f506e706f6331585a554250414f7649634e67696b2e6a7067)

[![](https://camo.githubusercontent.com/6d23bed92bf5bc993ddce634b4a628453ba70a82fc5d2d51a5a8c7329b9cf2a5/68747470733a2f2f64656d6f2e626c75626c6f672e696e666f2f626c75626c6f672d75706c6f6164732f70686f746f732f323032332f392f2f4a7358566d353835415837443077753972496e773772554c41384d6d4b774e59623564484668776d2e6a7067)](https://camo.githubusercontent.com/6d23bed92bf5bc993ddce634b4a628453ba70a82fc5d2d51a5a8c7329b9cf2a5/68747470733a2f2f64656d6f2e626c75626c6f672e696e666f2f626c75626c6f672d75706c6f6164732f70686f746f732f323032332f392f2f4a7358566d353835415837443077753972496e773772554c41384d6d4b774e59623564484668776d2e6a7067)

**New version for Laravel 10 and Livewire 3 is coming**

About BLUBLOG
-------------

[](#about-blublog)

BLUblog is laravel blog package with admin panel. Includes all views, controllers, routes and everything needed for a blog.

**Demo at [demo.blublog.info](https://demo.blublog.info/blog)**.

Require
-------

[](#require)

- **Laravel 7, 8 or 9.**
- **Livewire v2**.
- laravelcollective/html
- intervention/image
- user model with auth.

You can install all you need with:

```
composer require livewire/livewire:2.*
composer require laravelcollective/html
composer require intervention/image

```

Check below if you don't have authentication.

Instaling
---------

[](#instaling)

1. Make sure you have the requirements above. Download BLUblog with:

```
composer require blublog/blublog

```

1. In your User model you need to add this trait:

```
...
use Blublog\Blublog\Traits\ManageBlublog;
...
class User extends Authenticatable
{
    use ManageBlublog;
    ...

```

**If your User model is not in App\\Models, edit blublog config file** in src/Config/blublog.php.

2. You need to add this in filesystems.php from config folder:

```
'blublog' => [
    'driver' => 'local',
    'root' => public_path('/blublog-uploads'),
    'url' => env('APP_URL').'/blublog-uploads/',
    'visibility' => 'public',
],

```

3. Make sure you have at least one user and run this:

```
php artisan blublog:install

```

Or you can use blublog:setup if you already run migrations and don't wan't to publish files.

Blublog will check for common errors and do all it needs. **Only the first user** of your user model will have access to blog panel and they will be admin. You can give access to others and set up blog roles and permisions from the panel.

Cool. Everything should work now. By default you can visit your blog panel in example.com/panel and your blog in example.com/blog.

Upgrading
---------

[](#upgrading)

If somebody is using it, here is what you need to do to upgrade to 3.0.

- **See** the new migration.
- Replace blublog config file with the new one. In the array "image\_sizes" follow the instructions in the comments for backwards compatibility.
- Add the new column (file\_id) in blublog\_posts table. You will need to make a php script that finds the id of a File model given the content of the old column (img).

Features
--------

[](#features)

1. Posts (CRUD)

- Multible categories **with nesting** and multible tags.
- Summernote - WYSIWYG HTML Editor.
- **Easy adding and removing custom image sizes and settings.**
- Custom SEO post title and description (It's auto generated if not specified).
- Search.
- Comments can be allowed or forbidden.
- Posts have status. **You can add or remove status. Post status tells who can view/edit post in panel (published, private...)**.
- Post types. If you use video for a post, the post type will be "video", if you use image then it will be "post". You can add dropdown with other types in the view file.
- **Permissions for displaying HTML**. You can set for a user role 3 options for this - no HTML, restricted and no filter. Restricted option will use mewebstudio/Purifier if installed, if not a custom filter.
- Posts can be liked.
- Similar posts.
- Views statistics for views and likes.
- **Post revisions**. You can select post with what status to have revisions and how many.
- **Create post with other users**. Author can change post status to co-op and give edit link to other user and edit together.
- Generate sitemap (RSS).
- User can change the date that a post is created.
- User can change author if have permission.
- You can select posts to be recommended or in front page.
- You can upload images or videos for the post you create/edit.
- "On this topic" - Select a tag to show other post from the same topic.

2. Comments (CRUD)

- Anti-spam modul.
- Support nesting (can have replies to replies).
- Author comments have "Author" title.

3. Categories (CRUD)

- Background image.
- Description.
- **Infinite category nesting.** This means that one category can have multiple sub categories.

4. Users (CRUD)

- **Exend and use your User with traid.**
- **Add blog roles to your user model.**
- You can create new roles and **new permissions**.

5. File manager

- Browse and upload images and videos.
- All images have different sizes. On upload Blublog will create the sizes set in config file.
- All videos have thumbnail image with the sizes set in config file.

6. Panel

- You can ban users from the blog or from commenting.
- Logs. They are Errors, Alerts, Info, Visits and Bots visits.

And more...

If you don't have authentication
--------------------------------

[](#if-you-dont-have-authentication)

You can use laravel ui. You can install it like this for Laravel 8:

```
composer require laravel/ui
php artisan ui bootstrap --auth

```

And like this for Laravel 7:

```
composer require laravel/ui "2.0"
php artisan ui bootstrap --auth

```

Support
-------

[](#support)

I'm using it on my projects and I will be using it on new ones. I do changes like bug fixes first on my projects when needed and later (sometimes months) I add them here. If I see interest in this repository I will support it better and faster.

If you find any bugs or you want something changed or added, create an issue.

License
-------

[](#license)

The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).

###  Health Score

15

—

LowBetter than 3% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity21

Early-stage or recently created project

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/a20d6242486c2f328cc5420619ac77a918a89667ab89d426a5edf4ae178c4c62?d=identicon)[Philip1806](/maintainers/Philip1806)

---

Tags

blogblog-platformblogslaravellaravel-7-packagelaravel-8-packagelaravel-bloglaravel-packagelaravel7laravel8livewirepackagepanel

### Embed Badge

![Health badge](/badges/blublog-blublog/health.svg)

```
[![Health](https://phpackages.com/badges/blublog-blublog/health.svg)](https://phpackages.com/packages/blublog-blublog)
```

###  Alternatives

[jeroennoten/laravel-adminlte

Easy AdminLTE integration with Laravel

4.0k4.8M43](/packages/jeroennoten-laravel-adminlte)[dmstr/yii2-adminlte-asset

AdminLTE backend theme asset bundle for Yii 2.0 Framework

1.1k1.8M67](/packages/dmstr-yii2-adminlte-asset)[dwij/laraadmin

LaraAdmin is a Open source Laravel Admin Panel / CMS which can be used as Admin Backend, Data Management Tool or CRM boilerplate for Laravel with features like CRUD Generation, Module Manager, Media, Menus, Backups and much more

1.6k68.7k](/packages/dwij-laraadmin)[filament/spatie-laravel-media-library-plugin

Filament support for `spatie/laravel-medialibrary`.

1764.8M125](/packages/filament-spatie-laravel-media-library-plugin)[bezhansalleh/filament-exceptions

A Simple &amp; Beautiful Pluggable Exception Viewer for FilamentPHP's Admin Panel

193195.9k13](/packages/bezhansalleh-filament-exceptions)[filament/infolists

Easily add beautiful read-only infolists to any Livewire component.

1220.8M36](/packages/filament-infolists)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
