PHPackages                             geowrgetudor/laravel-tiny-blog - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. geowrgetudor/laravel-tiny-blog

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

geowrgetudor/laravel-tiny-blog
==============================

A tiny blog package for Laravel

0.0.2(2y ago)4101[2 PRs](https://github.com/geowrgetudor/laravel-tiny-blog/pulls)MITBladePHP ^8.1|^8.2|^8.3

Since Jan 18Pushed 2y ago1 watchersCompare

[ Source](https://github.com/geowrgetudor/laravel-tiny-blog)[ Packagist](https://packagist.org/packages/geowrgetudor/laravel-tiny-blog)[ Docs](https://github.com/geowrgetudor/laravel-tiny-blog)[ GitHub Sponsors]()[ RSS](/packages/geowrgetudor-laravel-tiny-blog/feed)WikiDiscussions main Synced 3d ago

READMEChangelog (2)Dependencies (10)Versions (4)Used By (0)

[![A tiny markdown blog package for Laravel](/art/tiny-blog.png)](/art/tiny-blog.png)

A tiny markdown blog package for Laravel
========================================

[](#a-tiny-markdown-blog-package-for-laravel)

[![Latest Version on Packagist](https://camo.githubusercontent.com/d4f63f64b00da3d69cf97c82141fb8b595dbebbec111d27dfe4f494ab1aa7838/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f67656f777267657475646f722f6c61726176656c2d74696e792d626c6f672e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/geowrgetudor/laravel-tiny-blog)[![Total Downloads](https://camo.githubusercontent.com/f601b924a408fe8e341382d441cc6aa86778d0151743f57f30d94574bde67302/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f67656f777267657475646f722f6c61726176656c2d74696e792d626c6f672e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/geowrgetudor/laravel-tiny-blog)

Quickly add a Markdown blog to your Laravel app.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require geowrgetudor/laravel-tiny-blog
```

Initialize the blog by running the following command. A directory called `content` will be create in the root of your project. That's where your markdown article will be stored.

```
php artisan tinyblog:init
```

Publish the assets:

```
php artisan tinyblog:publish
```

Publish the config file and configure it however you like it:

```
php artisan vendor:publish --tag="tiny-blog-config"
```

If you want some sample articles, you can publish our examples using:

```
php artisan tinyblog:example
```

Optionally, you can publish the views to customize and/or extend them

```
php artisan vendor:publish --tag="tiny-blog-views"
```

Creating new articles
---------------------

[](#creating-new-articles)

```
use Geow\TinyBlog\Models\Article;

Article::create([
    'title' => 'My first article',
    'description' => 'Trying out Tiny Blog',
    'img' => 'https://images.unsplash.com/photo-1682686579688-c2ba945eda0e?q=80&w=500&auto=format&fit=crop',
    'content' => '## Hello world', // should be markdown content
    'author' => 'George Tudor',
    'date' => now()->toDateTimeString(),
]);
```

Views
-----

[](#views)

You can access the blog at `your-domain.com/blog`. You can change the route name in `tiny-config.php` config file.

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [George Tudor](https://github.com/geowrgetudor)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

24

—

LowBetter than 31% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

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.

###  Release Activity

Cadence

Every ~56 days

Total

2

Last Release

843d ago

PHP version history (2 changes)0.0.1PHP ^8.1

0.0.2PHP ^8.1|^8.2|^8.3

### Community

Maintainers

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

---

Top Contributors

[![geowrgetudor](https://avatars.githubusercontent.com/u/7842657?v=4)](https://github.com/geowrgetudor "geowrgetudor (7 commits)")

---

Tags

blogblogginglaravellaravel-packagelaravelblogtiny-blog

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/geowrgetudor-laravel-tiny-blog/health.svg)

```
[![Health](https://phpackages.com/badges/geowrgetudor-laravel-tiny-blog/health.svg)](https://phpackages.com/packages/geowrgetudor-laravel-tiny-blog)
```

###  Alternatives

[spatie/laravel-pdf

Create PDFs in Laravel apps

1.0k4.8M47](/packages/spatie-laravel-pdf)[codewithdennis/filament-select-tree

The multi-level select field enables you to make single selections from a predefined list of options that are organized into multiple levels or depths.

329530.5k29](/packages/codewithdennis-filament-select-tree)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[worksome/exchange

Check Exchange Rates for any currency in Laravel.

124603.0k](/packages/worksome-exchange)

PHPackages © 2026

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