livewire コンポーネントから変数を渡してみました:
class Index extends Component
{
public function render()
{
return view('livewire.index')->with('type', config('constants.NONAUTH'));
}
}
そしてlayouts.appからアクセスします:
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
{{dd($type)}}
@include('includes.head')
...
定義されていないエラーが表示$type
されます。これを行う正しい方法は何ですか?