mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 12:11:08 -04:00
v5.0.0 update
This commit is contained in:
35
app/Http/Resources/RoleResource.php
Normal file
35
app/Http/Resources/RoleResource.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
namespace Crater\Http\Resources;
|
||||
|
||||
use Carbon\Carbon;
|
||||
use Crater\Models\CompanySetting;
|
||||
use Illuminate\Http\Resources\Json\JsonResource;
|
||||
|
||||
class RoleResource extends JsonResource
|
||||
{
|
||||
/**
|
||||
* Transform the resource into an array.
|
||||
*
|
||||
* @param \Illuminate\Http\Request $request
|
||||
* @return array
|
||||
*/
|
||||
public function toArray($request)
|
||||
{
|
||||
return [
|
||||
'id' => $this->id,
|
||||
'name' => $this->name,
|
||||
'title' => $this->title,
|
||||
'level' => $this->level,
|
||||
'formatted_created_at' => $this->getFormattedAt(),
|
||||
'abilities' => $this->getAbilities()
|
||||
];
|
||||
}
|
||||
|
||||
public function getFormattedAt()
|
||||
{
|
||||
$dateFormat = CompanySetting::getSetting('carbon_date_format', $this->scope);
|
||||
|
||||
return Carbon::parse($this->created_at)->format($dateFormat);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user