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
:
CanBeStriped.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Filament\Tables\Table\Concerns; use Closure; trait CanBeStriped { protected bool | Closure $isStriped = false; public function striped(bool | Closure $condition = true): static { $this->isStriped = $condition; return $this; } public function isStriped(): bool { return (bool) $this->evaluate($this->isStriped); } }