PHP code example of constant-null / eloquent-changed-by-user
1. Go to this page and download the library: Download constant-null/eloquent-changed-by-user 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/ */
constant-null / eloquent-changed-by-user example snippets
use ConstantNull\Eloquent\Support\ChangedByUser;
use Illuminate\Database\Eloquent\Model;
class SomeModel extends Model
{
use ChangedByUser;
/* The rest of the your class */
}
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class BestMigrationEver extends Migration
{
public function up()
{
Schema::table('some_table', function(Blueprint $table) {
$table->integer('changed_by')->nullable();
});
}
use ConstantNull\Eloquent\Support\ChangedByUser;
use Illuminate\Database\Eloquent\Model;
class SomeModel extends Model
{
use ChangedByUser;
const CHANGED_BY = 'last_user_id';
/* Rest part of the your class */
}