Wednesday, 18 January 2023

Laravel get table column headings /list array

use Illuminate\Support\Facades\Schema; 

$cols = array_values(Schema::getColumnListing($tableName));

No comments:

Post a Comment

Laravel Export data to csv

 use Illuminate\Http\Response; // Define a function to export data to CSV function exportToCSV($exportData, $columns) {     $filename = ...