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

Before Installation
this package requires sqlite3 ex of PHP to work so please install it
On Linux use this command
sudo apt-get install php8.2-sqlite3Installation
composer require tomatophp/tomato-backupor as Module
composer require tomatophp/tomato-backup-moduleafter that use this command to install
php artisan tomato-backup:installMarkdown Editor Install
we need a markdown editor to make this package work fine, let's start by installing it
yarn add md-editor-v3now 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 buildChangelog
Please see CHANGELOG for more information on what has changed recently.
Security
Please see SECURITY for more information about security.
Credits
License
The MIT License (MIT). Please see License File for more information.
Last updated
Was this helpful?