Вход Регистрация
Файл: app/Http/Resources/WebsiteResource.php
Строк: 25
<?php

namespace AppHttpResources;

use 
IlluminateHttpResourcesJsonJsonResource;

class 
WebsiteResource extends JsonResource
{
    
/**
     * Transform the resource into an array.
     *
     * @param  IlluminateHttpRequest  $request
     * @return array
     */
    
public function toArray($request)
    {
        return [
            
'id' => $this->id,
            
'domain' => $this->domain,
            
'privacy' => $this->privacy,
            
'email' => $this->email,
            
'password' => ($this->password true false),
            
'exclude_bots' => $this->exclude_bots,
            
'exclude_ips' => $this->exclude_ips,
            
'created_at' => $this->created_at,
            
'updated_at' => $this->updated_at,
        ];
    }

    
/**
     * Get any additional data that should be returned with the resource array.
     *
     * @param  IlluminateHttpRequest  $request
     * @return array
     */
    
public function with($request)
    {
        return [
            
'status' => 200
        
];
    }
}
Онлайн: 0
Реклама