taiwanleaftea / tltcms
CMS helpers for Orchid platform
0.9.1
2026-09-07 14:30 UTC
Requires
- php: ^8.3
- ext-iconv: *
- intervention/image: ^3.0
- jaybizzle/crawler-detect: *
- laravel/framework: 11.0 || ^12.0
- orchid/platform: ^14.0
Requires (Dev)
- orchestra/testbench: ^10.0
- phpunit/phpunit: ^11.0
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
CMS helpers for Laravel Orchid
Installation
First install and set up Laravel framework and Orchid platform as described in documentation.
Run the following commands from your terminal:
composer require taiwanleaftea/tltcms
php artisan vendor:publish --tag=tltcms --ansi --force
config/tltcms.php and migrations will be published, next run
php artisan migrate
add to app/Orchid/PlatformProvider.php
public function menu(): array
{
return [
...
Menu::make(__('Settings'))
->icon('gear')
->route('admin.settings'),
...
];
}
If you want edit views, you can publish them using command
php artisan vendor:publish --tag=tltcms-views --ansi --force
Usage
The project includes Breadcrumbs, MainMenu modules, Image optimizing module, Slug module, and some useful helpers.