mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-23 09:40:39 +00:00
upload request prototype UI
This commit is contained in:
@@ -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',
|
||||
],
|
||||
],
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user