Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

phpsa/filament-cms

Repository files navigation

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.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published