sagsoz06 / blog-module
A blog module for AsgardCMS.
Installs: 233
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Type:asgard-module
pkg:composer/sagsoz06/blog-module
Requires
- php: >=5.6
- composer/installers: ~1.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^1.11
- fzaninotto/faker: ~1.5
- orchestra/testbench: 3.3.*
- phpro/grumphp: ^0.9.1
- phpunit/phpunit: ~4.0
This package is auto-updated.
Last update: 2025-10-10 19:51:23 UTC
README
Installation
Execute the following command in your terminal
composer require asgardcms/blog-module
Followed by a composer update
Note: After installation you'll have to give you the required permissions to get to the blog module pages in the backend.
Usage
- You have to create a blog.indexandblog.showpage in your front end theme.
- You can link to the blog index page using : route(locale() . '.blog')
- In the blog index you'll have access to a $postsvariable on which you can loop
- To create a link to a specific post: route(locale() . '.blog.slug', [$post->slug])
- On the blog index and blog show pages you'll have access to a $latestPostsvariable containing the latest posts, this amount can be configured in the admin.
- On a post detail page, you can have access to the next and previous post by calling:
- $post->present()->previous
- $post->present()->next
 
Resources
Info
All AsgardCMS modules respect Semantic Versioning.