1. Go to this page and download the library: Download zoha/laravel-meta library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
//return meta value or null if meta not exists
$post->getMeta('key');
// return value or 'default value ' if not exists or value is null
$post->getMeta('key' , 'default value') ;
$post->meta->key; // return meta value
// return a collection of all metas for this model
// no meta yet ? -> empty collection
$post->getMetas() ;
$post->deleteMeta(); // delete all meta of this model
$post->deleteMeta('key'); // delete a specific meta
$post->truncateMeta(); // delete all model meta
$post->hasMeta(); // return true if this model has at least one meta
$post->hasMeta('key'); // return true or false
$post->setMeta('key' , null); // set key to null
$post->hasMeta('key'); // return false
$post->hasMeta('key' , true); // return true
$post->setMeta('key' , null); // set key to null
$post->existsMeta('key'); // return true
$post->setMeta('key' , 3);
$post->increaseMeta('key'); // meta value will change to 4
$post->setMeta('key' , 3.5);
$post->increaseMeta('key'); // meta value will change to 4.5
$post->setMeta('key' , 3.5);
$post->increaseMeta('key' , .1); // meta value will change to 3.6
$post->setMeta('key2' , 'not integer value');
$post->increaseMeta('key2'); // meta value will not change
$post->setMeta('key' , 3);
$post->increaseMeta('key',3); // meta value will change to 6
$post->setMeta('key' , 3);
$post->decreaseMeta('key'); // meta value will change to 2
$post->setMeta('key' , 3.5);
$post->decreaseMeta('key'); // meta value will change to 2.5
$post->setMeta('key' , 3.5);
$post->decreaseMeta('key', .1); // meta value will change to 3.4
$post->setMeta('key2' , 'not integer value');
$post->decreaseMeta('key2'); // meta value will not change
$post->setMeta('key' , 3);
$post->decreaseMeta('key',3); // meta value will change to 0