clevyr/nova-blog
Composer 安装命令:
composer require clevyr/nova-blog
包简介
A Laravel Nova tool.
README 文档
README
Features
- Title
- Author
- Snippet
- Locales
- Customizable slug
- Featured posts
- Customizable published-at dates
- "Published" or "draft" status
- RTE content (TinyMCE)
- Featured image for posts
- Categories
- Tags (separate from Categories)
- Custom SEO information (title, description and image)
Requirements
Vue 3
Laravel 8+
Nova 3.0+
Installation
Install the package
composer require clevyr/nova-blog
Publish Files
php artisan vendor:publish --tag=clevyr-nova-blog
php artisan vendor:publish --provider="Emilianotisato\NovaTinyMCE\FieldServiceProvider"
Run Migrations
php artisan migrate
Config
Blog Post Settings
nova-blog.php
| Option | Description | Accepted Values |
|---|---|---|
| blog_posts_table | The database table name where posts should be stored | String |
| post_model | The Eloquent model for the posts | Eloquent Model Class |
| nova_resource | The Nova Resource file for the posts | Nova Resource Class |
| base_uri | The base URI for blogs. ex: website.com/blog |
String with leading / |
| post_uri | The base URI for blogs posts. ex: website.com/blog/post/post-slug |
String with leading / |
| locales | An array of locales with a key => value of 'locale_slug' => 'locale display string' | Array |
Tag & Category Settings
tags.php
Reference 3rd party package - https://github.com/spatie/nova-tags-field
Accessing Data
Via Routes
Fetch all published posts
Route: $base_uri/get-published-posts
Example: /blog/get-published-posts
Returns: JSON of all published blog posts
Fetch individual post
Route: $base_uri/$post_uri/{post_slug}
Example: /blog/post/my-blog-post
Returns: Eloquent object of Post model
Fetch all published posts with a certain tag or category applied
Route: $base_uri/filter?type={category or tag name}
Example: /blog/filter?type=tag1
Returns: Array of Eloquent objects of Post model
Setting Default Images
To set default images for posts, featured images or seo images, you can create a new migration to change the default value.
Schema::table(config('nova-blog.blog_posts_table'), function (Blueprint $table) {
$table->string('featured_image')->default('/path-to-image')->change();
});
clevyr/nova-blog 适用场景与选型建议
clevyr/nova-blog 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 15.36k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2022 年 04 月 29 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「nova」 「laravel」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 clevyr/nova-blog 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 clevyr/nova-blog 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 clevyr/nova-blog 相关的其它包
同方向 / 同关键字的高下载量 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.
统计信息
- 总下载量: 15.36k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 4
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-04-29