What i want is to download file without showing popup where to save a file.it should download directly.
public function export_pharmacy_list()
{
$data = Pharmacy::with('user')->get();
$state = $this->list_of_states();
Excel::create('Laravel Excel', function($excel) use ($data,$state) {
$excel->sheet('Excel sheet', function($sheet) use ($data,$state) {
$sheet->loadView('excel.pharmacy.list')->with('data',$data)->with('list_of_state',$state);
$sheet->setOrientation('landscape');
});
})->export('xls');
}