LoginSignup
0
0

More than 1 year has passed since last update.

Laravel・ルーティングだけでHTML を出力

Posted at
<?php
Route::get('/non_view_sample', function () {
    return '
<!DOCTYPE html>
<html lang="ja">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>ルーティングのみでHTMLを出力</title>
</head>
<body>
    <h1>ルーティングのみでHTMLを出力</h1>
    <p>ルーティングのファイルのみで、HTML全体を返すと長くなります。</p>
</body>
</html>
';
});
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0