Full-page with Layout component

i work with the full page option

in my AppLayout i construct a data and want to show this data in the layout page
but when i use the full page its didnt call this action “/app/View/Components/AppLayout.php”

if i use in regular controller its work but with livewire full page its oblivious from the AppLayout.php

hi!
I have had similar issue, it is solved like this in th erender methode

$this->openJobs=collect($this->thejobs->items());

    $view=view('livewire.openjobs/show-jobs',
                    ['thejobs'=>$this->thejobs]);
    if ($this->iframe)
        return $view->layout('layouts.iframe');
    return $view;