generalsystemsvehicle/just-read-the-instructions
Composer 安装命令:
composer require generalsystemsvehicle/just-read-the-instructions
包简介
Wordpress Gutenberg as a Laravel Nova field type
README 文档
README
Wordpress Gutenberg as a Laravel Nova field type
Credits
This plugin stands on the shoulders of Laraberg, which provides the basic integration of Gutenberg, Laravel-Filemanager and the Laravel world.
Installation
Install the composer package:
composer require generalsystemsvehicle/just-read-the-instructions
Publish configurations and assets for the Just Read The Instructions as well as Laravel Filemanager:
php artisan vendor:publish --provider="GeneralSystemsVehicle\JustReadTheInstructions\FieldServiceProvider" --tag="public" php artisan vendor:publish --tag=lfm_config php artisan vendor:publish --tag=lfm_public
Usage
Nova
Usage in Nova is no different than any other field type. See the Nova docs for a more complete understanding, however this is an example:
<?php namespace App\Nova\Templates; use GeneralSystemsVehicle\JustReadTheInstructions\JustReadTheInstructions; class Pages extends Resource { public function fields(Request $request): array { return [ JustReadTheInstructions::make("Content")->asHtml() ]; } }
The field (column) from the model here is content. This will be stored as a blob of JSON in the database, so use the appropriate column type for your DB technology.
Note also the ->asHtml() on the end of the field's make statement. If you do not do this, then the resources preview page will render escaped HTML as this is the default behavior of Nova. The asHtml() addition will allow previews to render properly.
Blade view(s)
When you output your content data from the above example, you will need to render it through the rendering engine. You can do this with the helper noted here:
{!! JustReadTheInstructions::render( $m->content ) !!}
You will also need to include the correct CSS for this, place the below tag in the header somewhere:
<link rel="stylesheet" href="{{ asset('vendor/just-read-the-instructions/gutenberg.css') }}" />
generalsystemsvehicle/just-read-the-instructions 适用场景与选型建议
generalsystemsvehicle/just-read-the-instructions 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 6.89k 次下载、GitHub Stars 达 6, 最近一次更新时间为 2020 年 01 月 16 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「nova」 「laravel」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 generalsystemsvehicle/just-read-the-instructions 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 generalsystemsvehicle/just-read-the-instructions 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 generalsystemsvehicle/just-read-the-instructions 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A Laravel Nova card that shows you your system information.
A Laravel Nova card.
A Laravel Nova package for publishable fields
A Laravel Nova package for translatable fields
A Laravel Nova Image field. you can paste or drag or chose an image
A Laravel Nova Mail testing tool.
统计信息
- 总下载量: 6.89k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 8
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-01-16