我想知道是否值得从这段代码中移动。
@extends('layouts.app')
@section('title', 'Page Title')
@section('content')
@foreach ($tasks as $task)
{{ $task }}
@endforeach
@endsection
到这个。
<x-layout>
<x-slot:title>
Custom Title
</x-slot>
@foreach ($tasks as $task)
{{ $task }}
@endforeach
</x-layout>
我的意思是使用 Laravel 组件而不是仅仅使用 @extend、@yeild 和 @section 等会更好。