Если я правильно понял ваш вопрос, вы хотите скачать PDF-файл в зависимости от вида вашего блейда?Если это правда, вы можете сделать свой блейд как-то так:
<!doctype html>
<html lang="en">
<head>
<style>
/*your css style*/
</style>
</head>
<body>
@foreach($users as $user)
<table class="table">
<thead>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{$user->name}}</td>
<td>{{$user->last_name}}</td>
<td>{{$user->email}}</td>
</tr>
</tbody>
</table>
@endforeach
</body>
</html>
Затем в вашем контроллере, чтобы загрузить PDF-файл, вы можете сделать что-то вроде этого:
if ($users) {
$pdf = PDF::loadView('your_view', $users);
$fileName = 'your_file_name.pdf'
return $pdf->download($fileName);
} else {
return redirect()->back();
}