使用

現在,你可以在程式碼中的任何位置使用 document() 函式,例如在刀片模板中。此示例僅返回它作為引數接收的相同字串

<?php
Route::get('document/{text}', function($text) { 
    return document($text);
});

現在轉到瀏覽器中的/document/foo(使用 php artisan servevalet),這將返回 foo