Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
phosphorylation
/
tecas-solar.ma
/
vendor
/
filament
/
tables
/
src
/
Table
/
Concerns
:
HasQueryStringIdentifier.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Filament\Tables\Table\Concerns; use Closure; trait HasQueryStringIdentifier { protected string | Closure | null $queryStringIdentifier = null; public function queryStringIdentifier(string | Closure | null $identifier): static { $this->queryStringIdentifier = $identifier; return $this; } public function getQueryStringIdentifier(): ?string { return $this->evaluate($this->queryStringIdentifier); } }