- Menghapus div card border yang tidak digunakan. - Memperbaiki tampilan layout pada halaman otorisasi penawaran.
28 lines
871 B
PHP
28 lines
871 B
PHP
@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
|