Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

enadabuzaid's avatar

livewire didn't work when deploy to server

I get data via livewire when I deploy the website on the server the data didn't work and didn't appear

just get me

@livewireStyles

@livewireScripts

like this https://security-circles-group.uk/questionnaire/parent

0 likes
4 replies
Sinnbeck's avatar

Is there any other php on the page? Does the view file have .blade in the name?

Sinnbeck's avatar
Sinnbeck
Best Answer
Level 102

You can also try running

/opt/cpanel/ea-php81/root/usr/bin/php  /opt/cpanel/composer/bin/composer dump-autoload
/opt/cpanel/ea-php81/root/usr/bin/php artisan optimize:clear
1 like
enadabuzaid's avatar

@Sinnbeck yes in blade and no any php code on local work very well

@section('content')
    <div class="container-fluid full-height">
        <div class="row row-height">
            <div class="col-lg-6 content-left">
                <div class="content-left-wrapper">
                    <div id="social">
                        <ul>
                            <li><a href="#0"><i class="icon-facebook"></i></a></li>
                            <li><a href="#0"><i class="icon-twitter"></i></a></li>
                            <li><a href="#0"><i class="icon-google"></i></a></li>
                            <li><a href="#0"><i class="icon-linkedin"></i></a></li>
                        </ul>
                    </div>
                    <!-- /social -->
                    <div>
                        <figure><img src="{{asset('survey/img/info_graphic_2.svg')}}" alt="" class="img-fluid"></figure>
                        <h2>{{$type}} Survey</h2>
                        <p>Tation argumentum et usu, dicit viderer evertitur te has. Eu dictas concludaturque usu, facete detracto patrioque an per, lucilius pertinacia eu vel. Adhuc invidunt duo ex. Eu tantas dolorum ullamcorper qui.</p>
                        <a href="{{route('page.home')}}" class="btn_1 rounded" target="_parent">Back to home</a>
                        <a href="#start" class="btn_1 rounded mobile_btn">Start Now!</a>
                    </div>

                </div>
                <!-- /content-left-wrapper -->
            </div>
            <!-- /content-left -->

            <div class="col-lg-6 content-right" id="start">
                <livewire:survey :type="$type"/>
            </div>
            <!-- /content-right-->
        </div>
        <!-- /row-->
    </div>
    <!-- /container-fluid -->

@endsection

Please or to participate in this conversation.