add export pdf report tourisms and report ptsp
This commit is contained in:
32
app/Exports/ReportPbgPtspExport.php
Normal file
32
app/Exports/ReportPbgPtspExport.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exports;
|
||||
|
||||
use App\Models\PbgTask;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Maatwebsite\Excel\Concerns\FromCollection;
|
||||
use Maatwebsite\Excel\Concerns\WithHeadings;
|
||||
|
||||
class ReportPbgPtspExport implements FromCollection, WithHeadings
|
||||
{
|
||||
/**
|
||||
* @return \Illuminate\Support\Collection
|
||||
*/
|
||||
public function collection()
|
||||
{
|
||||
return PbgTask::select(
|
||||
'status_name',
|
||||
DB::raw('COUNT(*) as total')
|
||||
)
|
||||
->groupBy('status', 'status_name')
|
||||
->get();
|
||||
}
|
||||
|
||||
public function headings(): array
|
||||
{
|
||||
return [
|
||||
'Status Name',
|
||||
'Total'
|
||||
];
|
||||
}
|
||||
}
|
||||
29
app/Http/Controllers/Api/ReportPbgPtspController.php
Normal file
29
app/Http/Controllers/Api/ReportPbgPtspController.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Api;
|
||||
|
||||
use App\Exports\ReportPbgPtspExport;
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Models\PbgTask;
|
||||
use Barryvdh\DomPDF\Facade\Pdf;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Maatwebsite\Excel\Facades\Excel;
|
||||
|
||||
class ReportPbgPtspController extends Controller
|
||||
{
|
||||
public function export_excel(){
|
||||
return Excel::download(new ReportPbgPtspExport, 'laporan-ptsp.xlsx');
|
||||
}
|
||||
public function export_pdf(){
|
||||
$data = PbgTask::select(
|
||||
'status',
|
||||
'status_name', // Keeping this column
|
||||
DB::raw('COUNT(*) as total')
|
||||
)
|
||||
->groupBy('status', 'status_name')
|
||||
->get();
|
||||
$pdf = Pdf::loadView('exports.ptsp_report', compact('data'));
|
||||
return $pdf->download('laporan-ptsp.pdf');
|
||||
}
|
||||
}
|
||||
@@ -4,6 +4,8 @@ namespace App\Http\Controllers\Api;
|
||||
|
||||
use App\Exports\ReportTourismExport;
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Models\TourismBasedKBLI;
|
||||
use Barryvdh\DomPDF\Facade\Pdf;
|
||||
use Illuminate\Http\Request;
|
||||
use Maatwebsite\Excel\Facades\Excel;
|
||||
|
||||
@@ -12,4 +14,9 @@ class ReportTourismsController extends Controller
|
||||
public function export_excel(){
|
||||
return Excel::download(new ReportTourismExport, 'laporan-pariwisata.xlsx');
|
||||
}
|
||||
public function export_pdf(){
|
||||
$data = TourismBasedKBLI::all();
|
||||
$pdf = Pdf::loadView('exports.tourisms_report', compact('data'));
|
||||
return $pdf->download('laporan-pariwisata.pdf');
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user