->take(2)
optional(ReviewResource::collection($this->whenLoaded('review')))->take(2)
? funcition getData (url) {
return new Promise((param1, param2) =>
fetch(url)
.then(response => response.json())
.then(json => param1(json))
.catch(error => param2(error))
)
}
(async function() {
try {
console.log(await getData('url'))
} catch(e) {
console.error(e)
}
})()
вместо (async function() {
try {
const result = await fetch(url)
console.log(await result.json())
} catch(e) {
console.error(e)
}
})()