CMS helpers for Orchid platform

Maintainers

Package info

github.com/taiwanleaftea/tltcms

pkg:composer/taiwanleaftea/tltcms

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

0.7.1 2026-03-25 14:31 UTC

This package is auto-updated.

Last update: 2026-03-25 14:31:35 UTC


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.