In our previous tutorial, you have learned how to export data to excel file using Laravel. In this tutorial, we will explain how to import excel file data using Laravel. While developing web applications using Laravel, we sometimes need to implement excel spreadsheet file data import to insert bulk data into MySQL database and display. […]
Export Data to Excel File in Laravel
Data Export to Excel (xlsx or xls) format is feature of web project to allow users to export MySQL data for further use. In our previous tutorial you have learned how to export data to excel with PHP, in this tutorial you will learn how to export data to excel in Laravel framework. As PHPExcel […]
Build Simple RESTful API with Laravel
Representational state transfer (REST) is a software structure used for creating web services. The web services that fulfill the REST architecture is called RESTful web services. RESTful web services are used access and manipulate textual representation of web resources by predefined set of stateless operations. Laravel is a popular PHP framework that provides an easy […]
Converting JSON to Array or Object in PHP
While working on JSON (JavaScript Object Notation), we need to convert PHP array or object to JSON or JSON strings to an array. In our previous tutorial we have explained how to convert an array to JSON in PHP. In this tutorial you will learn how to convert JSON string to array in PHP. Sometimes […]
How to Upload File in PHP
In this tutorial you will learn how to upload file using PHP. You can check the tutorial to implement multiple file upload using jQuery and PHP. File uploading is an important part of web application. Every website has some file upload functionality. So here in this tutorial, we we will explain how to implement file […]