Hello. My problem is that when I export a database. All Cyrillic Flies My Controller
public function export2() { $table = Order_products::all(); $filename = "test2.csv"; $handle = fopen($filename, 'w+'); fputcsv($handle, array('sep=,')); fputcsv($handle, array('name','phone')); foreach($table as $row) { fputcsv($handle, array($row['name'], $row['description'], $row['staticprice'])); } fclose($handle); $headers = array( 'Content-Type' => 'text/csv', ); return Response::download($filename, 'test.csv', $headers); } Help, pliz
