Routing, Controller, dan View (Blade Template)
Layout dengan @extends
dan @section
<!-- layouts/app.blade.php -->
<html>
<head><title>@yield('title')</title></head>
<body>@yield('content')</body>
</html>
@extends('layouts.app')
@section('title', 'Home Page')
@section('content')
<p>Welcome!</p>
@endsection