Comment on page
🎒
Tomato Backup
Backup plugin for TomatoPHP build with spatie laravel-backup

composer require tomatophp/tomato-backup
after that use this command to install
php artisan tomato-backup:install
we need a markdown editor to make this package work fine, let's start by installing it
yarn add md-editor-v3
now on your app.js add this code
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);
now your markdown editor is ready.
now rebuild your frontend
yarn build
Last modified 1mo ago