Skip to content
Advertisement

How Export only specific columns from Laravel Blade table view to Ecxel file?

So I have a table on blade view file, I have successfully exported it into the excel file. Now I want to export without exporting the ‘Actions” column. How can I do that?

I have attached my code and blade file below, it works perfectly. I just want to export everything except the Actions Column as it contains Buttons for Database Operations

THIS IS MY EXPORT CLASS CODE:

JavaScript

THIS IS MY CONTROLLER FUNCTION:

JavaScript

THIS IS MY ROUTE:

JavaScript

THIS IS MY BLADE TABLE VIEW:

JavaScript

Advertisement

Answer

I don’t know if I got everything correctly, but why don’t you do something like this:

Pass an additional variable to your blade template like $isView, when you want to create a view for the user.

And in your blade.php template you do something like this:

JavaScript

When you want to render it to excel you just don’t pass this variable and the column is not rendered.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement