You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pixelfed/app/Models/GroupStore.php

35 lines
1.4 KiB
PHTML

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
4 days ago
use Illuminate\Support\Carbon;
4 days ago
/**
* @property int $id
* @property int|null $group_id
* @property string $store_key
* @property string|null $store_value
* @property string|null $metadata
4 days ago
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
*
4 days ago
* @method static \Illuminate\Database\Eloquent\Builder<static>|GroupStore newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|GroupStore newQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|GroupStore query()
* @method static \Illuminate\Database\Eloquent\Builder<static>|GroupStore whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|GroupStore whereGroupId($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|GroupStore whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|GroupStore whereMetadata($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|GroupStore whereStoreKey($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|GroupStore whereStoreValue($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|GroupStore whereUpdatedAt($value)
4 days ago
*
4 days ago
* @mixin \Eloquent
*/
class GroupStore extends Model
{
use HasFactory;
}