サイトアイコン 上尾市のWEBプログラマーによるブログ

「プロフェッショナルWebプログラミングLaravel」の感想・備忘録6

フロントエンド

Laravel Mixとは

匿名コンポーネント

<!doctype html>
<html lang="ja">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    @vite(['resources/css/app.css', 'resources/js/app.js'])
    <title>{{ $title ?? 'つぶやきアプリ' }}</title>
</head>
<body>
    {{ $slot }}
</body>
</html>
<x-layout title="TOP | つぶやきアプリ">
    <h1>つぶやきアプリ</h1>
        @auth
        〜以下省略〜
</x-layout>

登録フォームのコンポーネント化

resources/views/tweet/index.blade.phpを以下のようにし、layout/single、tweet/form/post、tweet/list、のコンポーネントに分ける。
(各コンポーネントの記述はここでは省略)

<x-layout title="TOP | つぶやきアプリ">
    <x-layout.single>
        <h2 class="text-center text-blue-500 text-4xl font-bold mt-8 mb-8">
            つぶやきアプリ
        </h2>
        <x-tweet.form.post></x-tweet.form.post>
        <x-tweet.list :tweets="$tweets"></x-tweet.list>
    </x-layout.single>
</x-layout>

Tailwind CSS

スタック

@stack('css')
として
@push
<style>h1 {color: red;}</style>
@endpush

とすると、@stack(‘css’)に@pushの内容が追記されていく。

モバイルバージョンを終了