upload request prototype UI

This commit is contained in:
Čarodej
2022-02-16 16:57:57 +01:00
parent 3fafc811fe
commit 394a7b6baf
197 changed files with 6927 additions and 2738 deletions
@@ -0,0 +1,25 @@
<?php
namespace Domain\UploadRequest\Controllers;
class GetUploadRequestController
{
public function __invoke()
{
return [
'user' => [
'data' => [
'attributes' => [
'name' => 'Jane Doe',
'avatar' => [
'md' => 'http://192.168.1.112:8000/avatars/md-f45abbe5-962c-4229-aef2-9991e96d54d9.png',
'sm' => 'http://192.168.1.112:8000/avatars/md-f45abbe5-962c-4229-aef2-9991e96d54d9.png',
'xs' => 'http://192.168.1.112:8000/avatars/md-f45abbe5-962c-4229-aef2-9991e96d54d9.png',
],
],
'id' => '123',
'type' => 'user',
],
],
];
}
}