diff --git a/app/Http/Livewire/Projects.php b/app/Http/Livewire/Projects.php index 354da103..b6b4fa04 100644 --- a/app/Http/Livewire/Projects.php +++ b/app/Http/Livewire/Projects.php @@ -78,7 +78,7 @@ protected function getTableColumns(): array ->label(__('Description')) ->searchable() ->sortable() - ->formatStateUsing(fn(string $state) => Str::limit(htmlspecialchars(strip_tags($state)), 50)), + ->formatStateUsing(fn(string $state) => Str::limit(htmlspecialchars(strip_tags($state ?? '')), 50)), UserColumn::make('owner') ->label(__('Owner')),