Вы можете просто прочитать этот файл в переменную и показать его в своем блейде.
$txtFile = file_get_contents("test.txt");
или
$myfile = fopen("webdictionary.txt", "r") or die("Unable to open file!");
echo fread($myfile,filesize("webdictionary.txt"));
fclose($myfile);