mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-26 07:54:04 +00:00
39 lines
1.1 KiB
PHP
39 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Eloquent;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Support\Carbon;
|
|
use Spatie\Activitylog\Models\Activity;
|
|
|
|
/**
|
|
* App\Models\Role
|
|
*
|
|
* @property int $id
|
|
* @property string $name
|
|
* @property string $guard_name
|
|
* @property Carbon|null $created_at
|
|
* @property Carbon|null $updated_at
|
|
* @property-read Collection|Activity[] $activities
|
|
* @property-read int|null $activities_count
|
|
* @property-read Model|Eloquent $causer
|
|
* @property-read Model|Eloquent $subject
|
|
* @property-read Model|Eloquent $target
|
|
* @method static Builder|Role newModelQuery()
|
|
* @method static Builder|Role newQuery()
|
|
* @method static Builder|Role query()
|
|
* @method static Builder|Role whereCreatedAt($value)
|
|
* @method static Builder|Role whereGuardName($value)
|
|
* @method static Builder|Role whereId($value)
|
|
* @method static Builder|Role whereName($value)
|
|
* @method static Builder|Role whereUpdatedAt($value)
|
|
* @mixin Eloquent
|
|
*/
|
|
class Role extends AbstractModel
|
|
{
|
|
protected $table = 'roles';
|
|
}
|