feat(Structure & IDE Helper)
This commit is contained in:
@@ -5,6 +5,32 @@ namespace App\Models;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
||||
|
||||
/**
|
||||
* @property int $id
|
||||
* @property string $identifier
|
||||
* @property string $name
|
||||
* @property string|null $description
|
||||
* @property string $url
|
||||
* @property string|null $icon
|
||||
* @property \Illuminate\Support\Carbon|null $created_at
|
||||
* @property \Illuminate\Support\Carbon|null $updated_at
|
||||
* @property string|null $deleted_at
|
||||
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Membership> $memberships
|
||||
* @property-read int|null $memberships_count
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Service newModelQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Service newQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Service query()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Service whereCreatedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Service whereDeletedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Service whereDescription($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Service whereIcon($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Service whereId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Service whereIdentifier($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Service whereName($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Service whereUpdatedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Service whereUrl($value)
|
||||
* @mixin \Eloquent
|
||||
*/
|
||||
class Service extends Model
|
||||
{
|
||||
protected $fillable = [
|
||||
|
||||
Reference in New Issue
Block a user