diff --git a/resources/views/khazanah/laporan/stokauditbackdate.blade.php b/resources/views/khazanah/laporan/stokauditbackdate.blade.php
new file mode 100644
index 0000000..b1a2175
--- /dev/null
+++ b/resources/views/khazanah/laporan/stokauditbackdate.blade.php
@@ -0,0 +1,123 @@
+@extends('layouts.app')
+
+
+@section('content')
+
+
+@endsection
+
diff --git a/resources/views/print/laporan_stokaudit.blade.php b/resources/views/print/laporan_stokaudit.blade.php
index d7a4752..4f7e08e 100644
--- a/resources/views/print/laporan_stokaudit.blade.php
+++ b/resources/views/print/laporan_stokaudit.blade.php
@@ -263,10 +263,3 @@
|
-
-
-
-
-
-
-138001.80
diff --git a/resources/views/print/laporan_stokauditbackdate.blade.php b/resources/views/print/laporan_stokauditbackdate.blade.php
new file mode 100644
index 0000000..3d9017d
--- /dev/null
+++ b/resources/views/print/laporan_stokauditbackdate.blade.php
@@ -0,0 +1,259 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ | Laporan Stok Audit |
+ |
+ |
+ Tarikh Cetak:
+ @php
+ $myDateTime = DateTime::createFromFormat('Y-m-d', $tarikh_cetak);
+ $formattedweddingdate = $myDateTime->format('d-m-Y');
+ echo($formattedweddingdate)
+ @endphp
+ |
+ |
+
+
+ | TARIKH |
+ {{ $tebus_date }} |
+
+ |
+ |
+ |
+ |
+ |
+ |
+ |
+
+
+
+
+
+
+ | Bil |
+ Norujukan |
+ JBG |
+ No. KP |
+ Berat |
+ Nilai Marhun (RM) |
+ Pembiayaan Asal (RM) |
+ Baki Pembiayaan (RM) |
+ Kadar Upah |
+ Tempoh Belum Bayar |
+ Keuntungan Belum Bayar (RM) |
+ Lanjutan |
+
+ @php $counter = 1;$totalpinjaman = 0; @endphp
+ @foreach($stokaudit['rekod'] as $index=>$item)
+
+ | {{ $counter }} |
+ {{$item['norujukan']}} |
+ {{ $item['tempoh'] }} |
+ {{$item['nokp']}} |
+ {{ number_format($item['berat'],2) }} |
+ {{ number_format($item['nilaimarhun'],2) }} |
+ {{ number_format($item['pinjaman'],2) }} |
+ {{ number_format($item['bakipjm'],2) }} |
+ {{ number_format($item['kadarupah'],2) }} |
+ {{ number_format($item['tempohblmbyar'],2) }} |
+ {{ number_format($item['upahblmbyar'],2) }} |
+ {{$item['lanjutan']}} |
+
+ @php $counter++; @endphp
+ @endforeach
+
+ Jumlah |
+ {{ number_format($stokaudit['totalberat'],2) }} |
+ {{ number_format($stokaudit['totalnilaimarhun'],2) }} |
+ {{ number_format($stokaudit['totalpinjaman'],2) }} |
+ {{ number_format($stokaudit['totalbakipjm'],2) }} |
+ |
+ |
+ {{ number_format($stokaudit['totaltunggakan'],2) }} |
+ |
+
+
+
+
+
+
+
+ |
+ .................................................................. |
+ |
+ .................................................................. |
+ |
+
+
+ |
+ DI SEMAK |
+ |
+ DI SAHKAN |
+ |
+
+
diff --git a/routes/web.php b/routes/web.php
index 395b8bd..786db28 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -240,6 +240,9 @@ Route::post('laporan/saghilang/cetak',['as'=>'saghilang.laporancetak','uses'=>'K
// Route::get('/laporan/agingbulanan', [ 'as'=>'laporan.agingbulanan', 'uses'=>'KhazanahController@laporanAging_Bulanan'])->middleware('auth','khazanah');
// Route::post('/laporan/agingbulanan/cetak', ['as'=>'agingbulan.cetaklaporan', 'uses'=>'KhazanahController@cetaklaporang_Aging'])->middleware('auth','khazanah');
+Route::get('/laporan/stokauditbackdate',['as'=>'laporan.stokauditbackdate','uses'=>'KhazanahController@laporanStokAuditBackdate'])->middleware('auth','khazanah');
+Route::get('laporan/stokauditbackdate/cetak',['as'=>'stokauditbackdate.laporancetak','uses'=>'KhazanahController@cetakLaporanStokAuditBackdate'])->middleware('auth','khazanah');
+
Route::get('laporan/lelongan/notislelong/',['as'=>'lelongan.notis','uses'=>'KhazanahController@NotisLelong']);