rayiumir/laravel-metabox

Easy creation of MetaBox for Laravel

Installs: 1

Dependents: 0

Suggesters: 0

Security: 0

Stars: 10

Watchers: 1

Forks: 0

Language:Blade

Type:package

v1.3.0 2025-03-29 16:50 UTC

This package is auto-updated.

Last update: 2025-05-26 19:51:46 UTC


README

Laravel Metabox Logo
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