Generate word document file in php Laravel 5 Example
In this example, i will explain how to create docs file using php laravel 5. i will show you simply way to generate docx file in laravel 5.8. you can easily create create word document file in laravel 5. we will generate *.doc file without using any composer package.
we will generate doc file from html content in laravel 5 application.
We might be some time require to create docs file from database in laravel. if you need to same requirement then you can easily achieve to generate word document.
We will use headers with html content and file name will be *.docx. we can use simple html tag like p, strong, ul, li etc. that all tags will support for creating docs file. you can follow this tutorial to create simple way docs file.
Create Route:
Route::get('generate-docs', function(){
$headers = array(
"Content-type"=>"text/html",
"Content-Disposition"=>"attachment;Filename=myfile.doc"
);
$content = '<html>
<head><meta charset="utf-8"></head>
<body>
<p>My Content</p>
<ul><li>Cat</li><li>Cat</li></ul>
</body>
</html>';
return \Response::make($content,200, $headers);
});
You can try and check it.
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Vue JS MultiSelect Dropdown Example
- Guzzle http client request tutorial with Laravel 5.8
- Build Admin Panel with Laravel 5.8
- Jquery Ajax Form Validation with Laravel 5.8
- Build RESTful API In Laravel 5.8 Example
- Laravel 5.8 CRUD (Create Read Update Delete) Tutorial For Beginners
- Laravel One to One Eloquent Relationship Tutorial
- Laravel Create Word Document File using phpoffice/phpword package