Files
lpj/resources/views/penawaran/showKirimEmail.blade.php

115 lines
6.3 KiB
PHP

@extends('layouts.main')
@section('breadcrumbs')
{{ Breadcrumbs::render(request()->route()->getName(), request()->route('noreg')) }}
@endsection
@section('content')
<div class="w-full grid gap-5 lg:gap-7.5 mx-auto">
<div class="card pb-2.5">
<div class="card-header" id="basic_settings">
<h3 class="card-title">
Show Kirim Email Penawaran
</h3>
<div class="flex items-center gap-2">
<a href="{{ route('tender.penawaran.ulang.index') }}" class="btn btn-xs btn-info"><i
class="ki-filled ki-exit-left"></i> Back</a>
</div>
</div>
<div class="card-body grid gap-5">
<div class="flex items-baseline flex-wrap lg:flex-nowrap gap-2.5">
<label class="form-label max-w-56">Nomor Registrasi</label>
<div class="flex flex-wrap items-baseline w-full">
<input class="flex w-full text-gray-600 font-medium text-sm input-custom" type="text"
name="nomor_registrasi" readonly value="{{ $permohonan->nomor_registrasi ?? '-' }}">
</div>
</div>
<div class="flex items-baseline flex-wrap lg:flex-nowrap gap-2.5">
<label class="form-label max-w-56">Nama Debitur</label>
<div class="flex flex-wrap items-baseline w-full">
<input class="flex w-full text-gray-600 font-medium text-sm input-custom" type="text"
name="nama_debitur" readonly value="{{ $permohonan->debiture->name ?? '-' }}">
</div>
</div>
<div class="card-body grid gap-5">
<div class="grid">
<div class="card card-grid min-w-full" data-datatable="false" data-datatable-page-size="5"
id="kjpp-table"
data-api-url="{{ route('tender.penawaran.showKirimSurat.datatables', $noreg) }}">
<div class="card-header py-5 flex-wrap">
<div class="card-title">
Data KJPP
</div>
</div>
<div class="card-body">
<div class="scrollable-x-auto">
<table
class="table table-auto table-border align-middle text-gray-700 font-medium text-sm"
data-datatable-table="true">
<thead>
<tr>
<th class="w-14" data-datatable-column="no">
No
</th>
<th class="min-w-[150px]" data-datatable-column="nama_kjpp">
<span class="sort">
<span class="sort-label">
Nama KJPP
</span>
<span class="sort-icon"> </span>
</span>
</th>
<th class="min-w-[150px]" data-datatable-column="email_kantor">
<span class="sort">
<span class="sort-label">
Email Kantor
</span>
</span>
</th>
<th class="min-w-[150px]" data-datatable-column="status">
<span class="sort">
<span class="sort-label">
Status Kirim
</span>
</span>
</th>
<th class="min-w-[50px] text-center" data-datatable-column="actions">Action
</th>
</tr>
</thead>
</table>
</div>
<div
class="card-footer justify-center md:justify-between flex-col md:flex-row gap-3 text-gray-600 text-2sm font-medium">
<div class="flex items-center gap-2">
Show
<select class="select select-sm w-16" data-datatable-size="true" name="perpage">
</select>
per page
</div>
<div class="flex items-center gap-4">
<span data-datatable-info="true"> </span>
<div class="pagination" data-datatable-pagination="true">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="flex justify-end">
<a href="{{ route('tender.penawaran.kirimEmailAll', $noreg) }}" class="btn btn-primary">
<i class="ki-filled ki-paper-plane"></i> Kirim
</a>
</div>
</div>
</div>
</div>
@endsection
@include('lpj::penawaran.layouts.scripts')