Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/syn.corals.io/Corals/modules/Foo/Transformers/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/syn.corals.io/Corals/modules/Foo/Transformers/BarTransformer.php
<?php

namespace Corals\Modules\Foo\Transformers;

use Corals\Foundation\Transformers\BaseTransformer;
use Corals\Modules\Foo\Models\Bar;

class BarTransformer extends BaseTransformer
{
    public function __construct($extras = [])
    {
        $this->resource_url = config('foo.models.bar.resource_url');

        parent::__construct($extras);
    }

    /**
     * @param Bar $bar
     * @return array
     * @throws \Throwable
     */
    public function transform(Bar $bar)
    {
        $show_url = $bar->getShowURL();

        $transformedArray = [
            'id' => $bar->id,
            'name' => HtmlElement('a', ['href' => $bar->getShowURL()], $bar->name),
            'created_at' => format_date($bar->created_at),
            'updated_at' => format_date($bar->updated_at),
            'action' => $this->actions($bar)
        ];

        return parent::transformResponse($transformedArray);
    }
}

Spamworldpro Mini