54 lines
1.7 KiB
PHP
54 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
use Codedge\Fpdf\Fpdf\Fpdf;
|
|
use DB;
|
|
class pdfController extends Controller
|
|
{
|
|
public function textConvert($text){
|
|
return iconv('utf-8','iso-8859-2',$text);
|
|
}
|
|
|
|
public function createViewEquipment(){
|
|
|
|
if(auth()->user() != null && auth()->user()->fireStationID != null ){
|
|
$equipment = DB::table('equipment')->where("fireStationID", '=', auth()->user()->fireStationID)
|
|
->whereNull('deleted_at')->get();
|
|
}
|
|
|
|
$pdf = new FPDF();
|
|
$pdf->AddPage();
|
|
$pdf->AddFont('arialpl', '', 'arialpl.php');
|
|
$pdf->AddFont('arialpl', 'B', 'arialplb.php');
|
|
$pdf->SetFont('arialpl','B',16);
|
|
$pdf->Cell(40,10, $this->textConvert("5. Sprzęt na wyposażeniu jednostki:"));
|
|
$pdf->Ln();
|
|
$pdf->SetFillColor(152,152,152);
|
|
$pdf->Cell(165,10, $this->textConvert("Nazwa sprzętu"), 1, 0, 'C', true);
|
|
$pdf->Cell(25,10, $this->textConvert("Ilość"), 1, 0, 'C', true);
|
|
$pdf->Ln();
|
|
$pdf->SetFont('arialpl','',14);
|
|
|
|
$fill = false;
|
|
$pdf->SetFillColor(224,224,224);
|
|
foreach( $equipment as $item){
|
|
$text = $item->name." ".$item->parameter;
|
|
$pdf->Cell(165,10,$this->textConvert($text), 1, 0, '', $fill);
|
|
$pdf->Cell(25,10,$this->textConvert($item->amount), 1, 0, 'C', $fill);
|
|
$pdf->Ln();
|
|
|
|
$fill = !$fill;
|
|
}
|
|
|
|
$pdf->SetLeftMargin(140);
|
|
$pdf->Ln();
|
|
$pdf->Ln();
|
|
$pdf->Cell(40,5,".........................................");
|
|
$pdf->SetFont('arialpl','',10);
|
|
$pdf->Ln();
|
|
$pdf->Cell(60,5, "(podpis naczelnika OSP)", 0, 0, 'C');
|
|
$pdf->Output();
|
|
exit;
|
|
}
|
|
}
|