You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
436 B
30 lines
436 B
<?php
|
|
|
|
namespace App\Entities\Users;
|
|
|
|
use Laracasts\Presenter\Presenter;
|
|
|
|
class UserPresenter extends Presenter
|
|
{
|
|
public function displayRoles()
|
|
{
|
|
$string = '';
|
|
|
|
return $string;
|
|
}
|
|
|
|
public function rolesLink()
|
|
{
|
|
$string = '';
|
|
|
|
return $string;
|
|
}
|
|
|
|
public function usernameRoles()
|
|
{
|
|
$string = $this->name.' (';
|
|
$string .= ')';
|
|
|
|
return $string;
|
|
}
|
|
}
|