phpsa/filament-cms

This package is abandoned and no longer maintained. No replacement package was suggested.

CMS for your Filament

Fund package maintenance!
phpsa

v2.2.0 2023-07-13 00:17 UTC

This package is auto-updated.

Last update: 2024-04-13 04:54:11 UTC


README

Latest Version on Packagist Semantic Release Total Downloads

Filament CMS

Installation

You can install the package via composer:

composer require phpsa/filament-cms
php artisan filament-cms:install
php artisan migrate

Routes

Route::any('/topics', [CmsCategoriesController::class, 'index'])->name('phpsa.filament.cms.resources.categories.resource');
Route::any('topics/{page:slug}', [CmsCategoriesController::class, 'show'])->name('phpsa.filament.cms.resources.categories.resource.show');
Route::any('posts/{page:slug}', [CmsBlogPostController::class, 'show'])->name('phpsa.filament.cms.resources.blog.post.resource');
Route::any('topics/{page:slug}/posts/{post:slug}', [CmsBlogPostController::class, 'showWithTopic'])->name('phpsa.filament.cms.resources.topic.blog.post.resource');
Route::any('{page:slug}', CmsPageController::class)->name('phpsa.filament.cms.resources.pages.resource');

Changelog

Please see CHANGELOG for more information on what has changed recently.

Credits

License

The MIT License (MIT). Please see License File for more information.