public function store(FreesRequest $request, $entry_id) { $data = $request->all(); $this->freeService->store($data, $entry_id); return redirect()->route('layout.client'); }
public function export($id) { $file = $this->freeService->query($id); return response()->download($file); }