Skip to content

Commit 0233322

Browse files
authored
Update Action.php
1 parent 6bf8916 commit 0233322

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/Action.php

+6-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010

1111
class Action extends Model
1212
{
13+
protected $appends = [
14+
"entity",
15+
];
1316
protected $keyType = 'string';
1417
protected $primaryKey = 'name';
1518
protected $rules = [
@@ -32,9 +35,11 @@ public function permissions(): HasMany
3235

3336
public function getEntityAttribute(): string
3437
{
35-
return collect(explode("\\", $this->model_class))
38+
$entity = collect(explode("\\", $this->model_class))
3639
->last()
3740
?? "";
41+
42+
return trim(ucwords(preg_replace('/[A-Z]/m', " $0", $entity)));
3843
}
3944

4045
public function getModelClassAttribute(): string

0 commit comments

Comments
 (0)