Initial Commit
This commit is contained in:
27
resources/views/otorisasipenawaran/show.blade.php
Normal file
27
resources/views/otorisasipenawaran/show.blade.php
Normal file
@@ -0,0 +1,27 @@
|
||||
@extends('layouts.main')
|
||||
|
||||
@section('breadcrumbs')
|
||||
{{ Breadcrumbs::render(request()->route()->getName()) }}
|
||||
@endsection
|
||||
@php
|
||||
$route = explode('.', Route::currentRouteName());
|
||||
@endphp
|
||||
@section('content')
|
||||
<div class="w-full grid gap-5 lg:gap-7.5 mx-auto">
|
||||
@php
|
||||
$buttonProses='';
|
||||
$buttonProses='<a href="'. route('otorisasitender.penawaran.edit', $id) .'" class="btn btn-xs btn-primary" title="Otorisasi Penawaran"><i class="ki-outline ki-arrow-circle-right"></i> Otorisasi Penawaran</a>';
|
||||
@endphp
|
||||
|
||||
@include('lpj::component.detail-jaminan', [
|
||||
'customlink' => $buttonProses,
|
||||
'backLink' => 'otorisasitender.penawaran.index',
|
||||
'title' => 'Detail Data Otorisasi Penawaran',
|
||||
'penawaran' => $prosespenawaran,
|
||||
])
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
@endsection
|
||||
Reference in New Issue
Block a user