|EntryHash newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|EntryHash newQuery() * @method static \Illuminate\Database\Eloquent\Builder|EntryHash query() * @method static \Illuminate\Database\Eloquent\Builder|EntryHash whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|EntryHash whereEntryId($value) * @method static \Illuminate\Database\Eloquent\Builder|EntryHash whereFilename($value) * @method static \Illuminate\Database\Eloquent\Builder|EntryHash whereHashCrc32($value) * @method static \Illuminate\Database\Eloquent\Builder|EntryHash whereHashSha1($value) * @method static \Illuminate\Database\Eloquent\Builder|EntryHash whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|EntryHash whereUpdatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|EntryHash whereVerified($value) * @mixin \Eloquent */ class EntryHash extends Model { protected $fillable = [ 'entry_id', 'filename', 'hash_crc32', 'hash_sha1', 'verified' ]; public function entry(): BelongsTo { return $this->belongsTo(Entry::class); } }