Skip to content

Latest commit

 

History

History
79 lines (58 loc) · 2.16 KB

README.md

File metadata and controls

79 lines (58 loc) · 2.16 KB

Packagist Downloads Packagist Downloads Packagist Downloads Packagist License GitHub Release Packagist Dependency Version

Documentation

Static Badge

Laravel Metabox

Metabox is a highly useful feature for retrieving or displaying WordPress information. We decided to bring this Metabox functionality to Laravel. With Laravel Metabox, you can define features such as custom fields for posts without the need to create a custom field table in the database.

Installs

Install Package:

composer require rayiumir/laravel-metabox

After Publish Files:

php artisan vendor:publish --provider="Rayiumir\\LaravelMetabox\\ServiceProvider\\MetaboxServiceProvider"

And Migration Database:

php artisan migrate

How to use

Calling HasMetaboxes in Models Post.php:

use Rayiumir\LaravelMetabox\Traits\HasMetaboxes;

use HasMetaboxes;

To delete post metabox data, place the following function in Post.php:

protected static function boot(): void
{
    parent::boot();

    static::deleting(function ($post) {
        $post->metaboxes()->delete();
    });
}

Task Laravel Metabox

  • Text Field
  • Upload Field
  • Select Field
  • Checkbox Field
  • Toggle Field
  • Radio ‌Button Field
  • Tabs Field
  • Gallery Image Field