芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/app/Traits/ProfitLossReportController.php
first(); $this->authorize('view report', $company); $locale = CompanySetting::getSetting('language', $company->id); App::setLocale($locale); $paymentsAmount = Payment::whereCompanyId($company->id) ->applyFilters($request->only(['from_date', 'to_date'])) ->sum('base_amount'); $expenseCategories = Expense::with('category') ->whereCompanyId($company->id) ->applyFilters($request->only(['from_date', 'to_date'])) ->expensesAttributes() ->get(); $totalAmount = 0; foreach ($expenseCategories as $category) { $totalAmount += $category->total_amount; } $dateFormat = CompanySetting::getSetting('carbon_date_format', $company->id); $from_date = Carbon::createFromFormat('Y-m-d', $request->from_date)->translatedFormat($dateFormat); $to_date = Carbon::createFromFormat('Y-m-d', $request->to_date)->translatedFormat($dateFormat); $currency = Currency::findOrFail(CompanySetting::getSetting('currency', $company->id)); $colors = [ 'primary_text_color', 'heading_text_color', 'section_heading_text_color', 'border_color', 'body_text_color', 'footer_text_color', 'footer_total_color', 'footer_bg_color', 'date_text_color', ]; $colorSettings = CompanySetting::whereIn('option', $colors) ->whereCompany($company->id) ->get(); view()->share([ 'company' => $company, 'income' => $paymentsAmount, 'expenseCategories' => $expenseCategories, 'totalExpense' => $totalAmount, 'colorSettings' => $colorSettings, 'company' => $company, 'from_date' => $from_date, 'to_date' => $to_date, 'currency' => $currency, ]); $pdf = PDF::loadView('app.pdf.reports.profit-loss'); if ($request->has('preview')) { return view('app.pdf.reports.profit-loss'); } if ($request->has('download')) { return $pdf->download(); } return $pdf->stream(); } }