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
Requires
- php: ^8.1
- dereuromark/media-embed: ^0.6
- filament/filament: ^2.16.55
- filament/spatie-laravel-tags-plugin: ^2.0
- johncarter/filament-focal-point-picker: ^0.8
- league/glide: ^2.2
- ralphjsmit/laravel-filament-seo: ^1.0
- spatie/enum: ^3.13
- spatie/image: ^2.2
- spatie/laravel-package-tools: ^1.10
README
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.