fix show page document pbg
This commit is contained in:
21
app/Http/Controllers/PbgTaskAttachmentsController.php
Normal file
21
app/Http/Controllers/PbgTaskAttachmentsController.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\PbgTask;
|
||||
use App\Models\PbgTaskAttachment;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class PbgTaskAttachmentsController extends Controller
|
||||
{
|
||||
public function show(string $id, Request $request){
|
||||
try{
|
||||
$title = $request->get('type') == "berita-acara" ? "Berita Acara" : "Bukti Bayar";
|
||||
$data = PbgTaskAttachment::findOrFail($id);
|
||||
$pbg = PbgTask::findOrFail($data->pbg_task_id);
|
||||
return view('pbg-task-attachment.show', compact('data', 'pbg', 'title'));
|
||||
}catch(\Exception $e){
|
||||
return view('pages.404');
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user