Namespaces
LaravelUi5
Core
Attributes
Commands
Contracts
Controllers
Enums
Exceptions
Infrastructure
Introspection
Middleware
Services
Traits
Ui5
View
Traits
HasAssetsTrait
SluggedSource
Overview
Namespace
Trait
Tree
1:
<?php
2:
3:
namespace
LaravelUi5\Core\Traits;
4:
5:
trait
SluggedSource
6:
{
7:
private
function
getSlug(): string
8:
{
9:
$parts
= explode(
'.'
,
$this
->getNamespace());
10:
return
array_pop(
$parts
);
11:
}
12:
}
13: