I'm developing a site where user asked me to create a application using laravel crud but he asked me to send data directly to excel sheet without database.
2
-
You can use any widget that allows you to add, edit and delete in excel.Danyal Sandeelo– Danyal Sandeelo2019-10-27 06:56:20 +00:00Commented Oct 27, 2019 at 6:56
-
I don't if that possible right now, but in my point of view, you should use a database, and create a job that will export and import data from the database to an excel sheet.Benyou1324– Benyou13242019-10-27 07:20:51 +00:00Commented Oct 27, 2019 at 7:20
Add a comment
|
1 Answer
You can open CSVs in Excel so if you simply create a CSV file (on the server?) or wherever you want it - the client can open that in excel and treat it as a normal spreadsheet. Here's an example about how to create and store the file.