Livewire timeout using HTTP Request Data - Help Please

What seems to be the problem:

Im trying to get information from my API using HTTP and then trying to output it into my blade

Do you have any screenshots or code examples:

However for some reason if I remove the DD out the component and try dd my blade I get this issue…

Symfony\Component\ErrorHandler\Error\FatalError

Maximum execution time of 60 seconds exceeded

change this in render to see:

$this->users =$response ...
return view('livewire.users', ['users' => $this->users]);

Hi,

Thank you for the reply I have tried that and im still facing the same issue :(… its so strange im not sure if its because the setup of my blades maybe, im not really sure …

It seems to be when I have

<livewire:users>

In my blade it breaks, but im sure I need it as its a component ahah

Ok, could you tried to put @livewire(‘users’) inside a div container?

Same thing this is my users.blade.php

@extends('layouts.master')

@section('content')

<div>
<livewire:users>
{{dd($users)}}
</div>

@endsection

wait…are you trying the directive <livewire:users> inside the same blade for user component?

I missunderstand something…this is your user component blade???

@extends('layouts.master')

@section('content')

<div>
<livewire:users>
{{dd($users)}}
</div>

@endsection

I think ive made a mistake I and I must of been reading it all wrong ive been trying to render the component on itself, fell like I want to slap myself apologise and thank you for the help, I was having a rather blond moment ahah

hahaha, I am glad to know that you can now continue with your project.