Edit file utama web Anda
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="<?= isset($metaDescription) ? $metaDescription : 'Default description untuk website Anda'; ?>">
<title><?= isset($title) ? $title : 'Judul Default'; ?></title>
</head>
<body>
<?= $this->renderSection('content') ?>
</body>
</html>
Tambahkan pada controller untuk mengirim data
public function index()
{
$data = [
'title' => 'Home - Supplier Kabel Rem Sepeda Motor',
'metaDescription' => 'Kami adalah supplier kabel rem sepeda motor terbaik yang menyediakan produk berkualitas tinggi untuk kebutuhan otomotif Anda.'
];
return view('home', $data);
}
0 comments:
Post a Comment