Coder Social home page Coder Social logo

Comments (10)

Arturexe avatar Arturexe commented on July 19, 2024 17

Welp, here I am having no idea what's happening and no useful answer anywhere.

from inertia-laravel.

msslgomez avatar msslgomez commented on July 19, 2024 11

How did you fix it?

from inertia-laravel.

riddla avatar riddla commented on July 19, 2024 11

This "Undefined variable $page" error might happen, if your routing doesn't respond with an inertia response.

You can respond within a controller as shown in https://inertiajs.com/responses#creating-responses.

// routes/web.php
Route::get('/demo', [DemoController::class, 'show']);
<?php

namespace App\Http\Controllers;

use Inertia\Inertia;
use Inertia\Response;

class DemoController extends Controller
{
    public function show(): Response
    {
        return Inertia::render('Demo', [
            'demodata' => 'foobar',
        ]);
    }
}

Or you can shortcut the routing as mentioned at https://inertiajs.com/routing#route-helpers:

// routes/web.php
Route::inertia('/demo', 'Demo');

from inertia-laravel.

kapsonic avatar kapsonic commented on July 19, 2024 6

Just after submitting this issue I figured it out.
Sorry. Closing

from inertia-laravel.

Daeoss avatar Daeoss commented on July 19, 2024 2

image

What worked for me was switching from view('app') to inertia('app')

from inertia-laravel.

eugenefvdm avatar eugenefvdm commented on July 19, 2024 1

For newbies like me getting this error, I tried migrating from a Livewire app to an Inertiajs app and this was a stumbling block. On this page it's spelt out:

By default the Laravel adapter will use the app.blade.php view. This template should include your assets, as well as the @inertia directive. If you'd like to use a different root view, you can change it using Inertia::setRootView().

from inertia-laravel.

kmuenkel avatar kmuenkel commented on July 19, 2024 1

I was able to clear this error just by running php artisan optimize:clear. Turned out there was an old "{any}" route still cached from before Breeze overwrote it.

from inertia-laravel.

smbdelse avatar smbdelse commented on July 19, 2024

@kapsonic or @msslgomez, did you resolve the issue? Can you explain it?

from inertia-laravel.

Juhlinus avatar Juhlinus commented on July 19, 2024

@smbdelse What does you resources/views/app.blade.php file look like?

Make sure that it resembles this:

https://github.com/inertiajs/pingcrm/blob/master/resources/views/app.blade.php

Note the @inertia blade helper.

from inertia-laravel.

smbdelse avatar smbdelse commented on July 19, 2024

Blade file was ok, it ended up to be a stupid problem with a controller (just a typo). Thanks anyway! :)

from inertia-laravel.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.