mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-30 13:11:08 -04:00 
			
		
		
		
	v5.0.0 update
This commit is contained in:
		
							
								
								
									
										30
									
								
								app/Http/Resources/CompanyResource.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										30
									
								
								app/Http/Resources/CompanyResource.php
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,30 @@ | ||||
| <?php | ||||
|  | ||||
| namespace Crater\Http\Resources; | ||||
|  | ||||
| use Illuminate\Http\Resources\Json\JsonResource; | ||||
|  | ||||
| class CompanyResource 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, | ||||
|             'logo' => $this->logo, | ||||
|             'logo_path' => $this->logo_path, | ||||
|             'unique_hash' => $this->unique_hash, | ||||
|             'owner_id' => $this->owner_id, | ||||
|             'address' => $this->when($this->address()->exists(), function () { | ||||
|                 return new AddressResource($this->address); | ||||
|             }), | ||||
|             'roles' => RoleResource::collection($this->roles) | ||||
|         ]; | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user