cossack910 / CRMSystem

Laravel10 + inertia + vue
0 stars 0 forks source link

dd #4

Open cossack910 opened 1 year ago

cossack910 commented 1 year ago

laravel側でデバッグ

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use Inertia\Inertia;

class InertiaTestController extends Controller
{
    public function index()
    {
        return Inertia::render('Inertia/Index'); //Pages配下のInertia/Index.vueが表示される
    }

    public function show($id) {
        dd($id); ←これ
    }
}
cossack910 commented 1 year ago

モーダルウィンドウが出る スクリーンショット 2023-10-05 7 35 10(2)

cossack910 commented 1 year ago

SQL結果の確認

ORMをddで囲む

dd(Item::select('id', 'name', 'price', 'is_selling')->get());

スクリーンショット 2023-11-18 0 53 00(2)