alexanderhorner/laravel-orbit-html-driver
Composer 安装命令:
composer require alexanderhorner/laravel-orbit-html-driver
包简介
A HTML driver for laravel orbit, a flat-file database driver for Laravel Eloquent.
README 文档
README
A HTML driver for laravel orbit, a flat-file driver for Laravel Eloquent. Supports Jekyll Markdown, HTML + YAML front matter.
Installation
Install via composer by running this in your terminal:
composer require ryangjchandler/orbit
Usage
Go into your orbit config file config/orbit.php. If you cant find it, publish it by running this in your terminal:
php artisan vendor:publish --provider="Orbit\\OrbitServiceProvider"
In the config file, add the HTML Driver and configure it as default driver:
<?php return [ 'default' => env('ORBIT_DEFAULT_DRIVER', 'html'), # <-- Change here to html 'drivers' => [ 'html' => \Alexanderhorner\LaravelOrbitHtmlDriver\Driver\HTMLDriver::class, # <-- Add this line to your drivers array here 'md' => \Orbit\Drivers\Markdown::class, 'json' => \Orbit\Drivers\Json::class, 'yaml' => \Orbit\Drivers\Yaml::class, 'md_json' => \Orbit\Drivers\MarkdownJson::class, ], ...
This should be it. New database entries should now create html files with yaml front matter.
统计信息
- 总下载量: 468
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-03-14