download() публичный Метод

Make the PDF downloadable by the user
public download ( string $filename = 'document.pdf' ) : Illuminate\Http\Response
$filename string
Результат Illuminate\Http\Response
Пример #1
0
 /**
  * Make the PDF downloadable by the user
  *
  * @param string $filename
  * @return \Illuminate\Http\Response 
  * @static 
  */
 public static function download($filename = 'document.pdf')
 {
     return \Barryvdh\DomPDF\PDF::download($filename);
 }