%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/shaban/duassis/api/app/Transformers/
Upload File :
Create Path :
Current File : //var/www/html/shaban/duassis/api/app/Transformers/ProfileTransformer.php

<?php

namespace App\Transformers;

use App\Models\Profile;
use Carbon\Carbon;

class ProfileTransformer extends BaseTransformer
{
    /**
     * @param Profile $profile
     *
     * @return array
     */
    public function transform(Profile $profile)
    {
        return [
            'id'        => $profile->id,
            'phone'     => $profile->phone,
            'birthday'  => $profile->birthday
                ? Carbon::parse($profile->birthday)
                        ->format('Y-m-d')
                : null,
        ];
    }
}

Zerion Mini Shell 1.0