%PDF- %PDF-
Direktori : /var/www/html/shaban/duassis/api/app/Transformers/ |
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, ]; } }