πŸ“ƒTomato CMS

full CMS System to manage your content build for Tomato PHP

Installation

composer require tomatophp/tomato-cms

or as Module

composer require tomatophp/tomato-cms-module

after installing your package please run this command

php artisan tomato-cms:install

Markdown Editor Install

we need a markdown editor to be installed on your front let's start by installing the package

yarn add md-editor-v3

now you need to allow it on your app.js

import { MdEditor, MdPreview } from 'md-editor-v3';
import 'md-editor-v3/lib/style.css';

createApp({
    render: renderSpladeApp({ el })
})
    .use(SpladePlugin, {
        max_keep_alive: 10,
        transform_anchors: false,
        progress_bar: true,
    })
    .component("MdEditor", MdEditor)
    .component("MdPreview", MdPreview)
    ...
    .mount(el);

Changelog

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

Security

Please see SECURITY for more information about the security.

Credits

License

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

Last updated