- This package requires PHP 5.6+
- It works with Laravel 5.4 or later (and may work with earlier versions too).
This package was forked from this repository and I just modified some things that I need in my project. I had problems when changing my Auth::guard
from web
to api
so I modified it to fit my needs.
Step 1: Add this to your composer.json.
{
"require": {
"benyslo/userstamps": "dev-fixes",
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/BenySLO/userstamps"
},
],
}
Step 2: composer update
Load the trait in your model and see the magic.
You can configure this package to autoload the userstamp along with your model. This will be the case when userstamp is being set in controller or some where else manually.
use BenySLO\Userstamps\UserstampTrait;
class Post extends Model {
use UserstampTrait;
protected $userstamps = [
'created_by',
'updated_by',
'submitted_by',
'deleted_by'
];
}
And then you can autoload these userstamps like,
$posts = Post::withUserstamps()->get();
This will allow you to access the defined userstamps on your model as dynamic relationships
$post->createdByUser;
$post->updatedByUser;
$post->submittedByUser;
$post->deletedByUser;
You can configure this package to handle the userstamp insertion behind the scenes. This will also load those userstamps when you will fetch the records with eloquent. Auto insert will depend on,
- Event ('creating', 'saving', 'updating', 'deleting')
- Field
- Expression
use BenySLO\Userstamps\UserstampTrait;
class Post extends Model {
use UserstampTrait;
protected $userstamps = [
// This userstamp should be set when 'creating' event is invoked.
'created_by' => [
'depends_on_event' => 'creating',
],
// This userstamp should be set when 'creating' or 'updating' event is invoked.
// This is an example, if a userstamp depends on multiple events
'updated_by' => [
'depends_on_event' => ['creating', 'updating'],
],
'deleted_by' => [
'depends_on_event' => 'deleting',
],
// This userstamp should be set if "is_archived" is dirty (has some change in value)
'archived_by' => [
'depends_on_field' => 'is_archived'
],
// This userstamp should be set if "updating" event is invoked on this model,
// and "is_submitted" is dirty (has some change in value)
'submitted_by'=> [
'depends_on_event' => 'updating',
'depends_on_field' => 'is_submitted'
],
// This userstamp should be set if "updating" event is invoked on this model,
// and provided expression evaluates to true
'suspended_by' => [
'depends_on_event' => 'updating',
'depends_on_expression' => '$api_hits > 100' // $api_hits is a model field i.e $model->api_hits
],
.............,
..............,
];
}
And then you can autoload these userstamps like,
$posts = Post::withUserstamps()->get();
This will allow you to access the defined userstamps on your model as dynamic relationships
$post->createdByUser;
$post->updatedByUser;
$post->archivedByUser;
$post->submittedByUser;
$post->suspendedByUser;
This open-source software is licensed under the MIT license.