After a long time, i resolve my problem myself.
For LARAVEL.
First open config/Wkhtml2pdf.php file
and
return array(
'debug' => false,
'binpath' => 'lib/',
'binfile' => 'wkhtmltopdf-amd64',
'output_mode' => 'I'
);
to
return array(
'debug' => true,
'binpath' => 'lib/',
'binfile' => 'wkhtmltopdf-amd64',
'output_mode' => 'I'
);
And run again in browser.
you see an array like this :
array:3 [▼
"input" => "/tmp/163448393.html"
"command" => "/var/www/html/somsv3/vendor/nitmedia/wkhtml2pdf/src/Nitmedia/Wkhtml2pdf/lib/wkhtmltopdf-amd64 --orientation 'Portrait' --page-size 'A4' "/tmp/163448393.html" -"
"content" => array:3 [▶]
]
here content is your PDF.
open "content" and fix permission issue of file give it chmod -R 777 "filename"
:)