Data hosted with ♥ by
Pastebin.com
-
Download Raw
-
See Original
<?php
// hide code
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public
function
index
(
)
{
return
response
(
)
->
json
(
[
'status'
=>
'success'
,
'data'
=>
User
::
all
(
)
]
)
;
}