clevyr/nova-blog
最新稳定版本:v4.0.6
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();
});
统计信息
- 总下载量: 14.69k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-04-29