Browse Source

adding breakdown pen

main^2
dfoso 1 year ago committed by =
parent
commit
502f4c0404
  1. 3
      app/Controllers/Home.php
  2. 52
      app/Models/Mpemby.php
  3. 191
      app/Views/ppm/dashboard.php
  4. 1
      writable/debugbar/debugbar_1709275962.195083.json
  5. 1
      writable/debugbar/debugbar_1709276003.014256.json
  6. 1
      writable/debugbar/debugbar_1709279229.539252.json
  7. 1
      writable/debugbar/debugbar_1709280432.360484.json
  8. 1
      writable/debugbar/debugbar_1709280737.076727.json
  9. 1
      writable/debugbar/debugbar_1709280800.861250.json
  10. 1
      writable/debugbar/debugbar_1709280830.149204.json
  11. 1
      writable/debugbar/debugbar_1709280861.357492.json
  12. 1
      writable/debugbar/debugbar_1709280906.410257.json
  13. 1
      writable/debugbar/debugbar_1709280932.076715.json
  14. 1
      writable/debugbar/debugbar_1709283685.797203.json
  15. 1
      writable/debugbar/debugbar_1709284206.418118.json

3
app/Controllers/Home.php

@ -39,6 +39,9 @@ class Home extends BaseController
$p['paycomp'] = $model->paycompNas($param)->getResult();
$p['parsesof'] = $model->sofNas($param)->getResult();
$p['refbulan'] = $model->getBln();
$p['wp_terdaftar'] =$model->getWpsk()->getFirstRow('array');
$p['wp_sk'] =$model->getBreakdownPen($param)->getFirstRow('array');
$p['wpadm'] = $model->getWPterdaftar($param)->getFirstRow('array');

52
app/Models/Mpemby.php

@ -71,7 +71,7 @@ class Mpemby extends Model
{
$tahun = $param['tahun'];
$tahunl = $tahun - 1;
$bln = $param['bulan'];
$bln = $param['bln'];
$query = $this->db->query("SELECT A.JMLBULAN, A.JUMLAHWP,B.JUMLAHWP JUMLAHWPP FROM
(SELECT TO_NUMBER(BLNBYR) JMLBULAN,JUMLAHWP FROM PAYCOMPNAS
WHERE THNBYR = '" . $tahun . "') A,
@ -85,11 +85,13 @@ class Mpemby extends Model
function sofNas($param)
{
$tahun = $param['tahun'];
$query = $this->db->query("SELECT LAPISAN,SUM(WPBYR) WPBYR,SUM(TOTAL) TOTAL,
(SELECT SUM(WPBYR) FROM SOFNAS WHERE THNBYR = '" . $tahun . "') TOTWPBYR,
(SELECT SUM(TOTAL) FROM SOFNAS WHERE THNBYR = '" . $tahun . "') TOTALL
$bln = $param['bln'];
$query = $this->db->query("SELECT NO,LAPISAN,WPBYR,TOTAL,
(SELECT SUM(ROUND(WPBYR/2)) FROM SOFNAS WHERE THNBYR = '" . $tahun ."' AND BLNBYR < = '" . $bln . "') TOTWPBYR,
(SELECT SUM(TOTAL) FROM SOFNAS WHERE THNBYR = '" . $tahun ."' AND BLNBYR < = '" . $bln . "') TOTALL
FROM (
SELECT LAPISAN,TO_NUMBER(WPBYR) WPBYR,ROUND(TOTAL) TOTAL FROM SOFNAS WHERE THNBYR = '" . $tahun . "') GROUP BY LAPISAN ORDER BY LAPISAN ASC");
SELECT NO,LAPISAN,SUM(ROUND(WPBYR/2)) WPBYR,SUM(ROUND(TOTAL)) TOTAL FROM SOFNAS WHERE THNBYR = '" . $tahun . "' AND BLNBYR < = '".$bln."'
GROUP BY NO,LAPISAN) ORDER BY NO ASC ");
return $query;
}
@ -99,4 +101,44 @@ class Mpemby extends Model
$builder->select('*');
return $builder->get()->getResult();
}
function getWpsk()
{
$query= $this->db->query("SELECT SUM(CASE WHEN FLAG_WPS_WPK = 'WPK' THEN JUMLAHWP ELSE 0 END) WPK,
SUM(CASE WHEN FLAG_WPS_WPK = 'WPS' THEN JUMLAHWP ELSE 0 END) WPS
FROM WPSK_MV");
return $query;
}
function getBreakdownPen($param)
{
$tahun = $param['tahun'];
$tahunl = $tahun - 1;
$bln = $param['bln'];
$query= $this->db->query("SELECT
SUM(CASE WHEN FLAG_WPS_WPK = 'WPS' AND THNBYR = '" . $tahun . "' AND BLNBYR <= '" . $bln . "' THEN WPBYR ELSE 0 END) WPSWP,
SUM(CASE WHEN FLAG_WPS_WPK = 'WPS' AND THNBYR = '" . $tahunl . "' AND BLNBYR <= '" . $bln . "' THEN WPBYR ELSE 0 END) WPSWPL,
SUM(CASE WHEN FLAG_WPS_WPK = 'WPS' AND THNBYR = '" . $tahun . "' AND BLNBYR <= '" . $bln . "' THEN ROUND(TOTAL) ELSE 0 END) WPSBYRN,
SUM(CASE WHEN FLAG_WPS_WPK = 'WPS' AND THNBYR = '" . $tahunl . "' AND BLNBYR <= '" . $bln . "' THEN ROUND(TOTAL) ELSE 0 END) WPSBYRP,
SUM(CASE WHEN FLAG_WPS_WPK = 'WPK' AND THNBYR = '" . $tahun . "' AND BLNBYR <= '" . $bln . "' THEN WPBYR ELSE 0 END) WPKWP,
SUM(CASE WHEN FLAG_WPS_WPK = 'WPK' AND THNBYR = '" . $tahunl . "' AND BLNBYR <= '" . $bln . "' THEN WPBYR ELSE 0 END) WPKWPL,
SUM(CASE WHEN FLAG_WPS_WPK = 'WPK' AND THNBYR = '" . $tahun . "' AND BLNBYR <= '" . $bln . "' THEN ROUND(TOTAL) ELSE 0 END) WPKBYRN,
SUM(CASE WHEN FLAG_WPS_WPK = 'WPK' AND THNBYR = '" . $tahunl . "' AND BLNBYR <= '" . $bln . "' THEN ROUND(TOTAL) ELSE 0 END) WPKBYRP
FROM BREAKDOWN_PEN");
return $query;
}
function getWPterdaftar($param)
{
$tahun = $param['tahun'];
$tahunl = $tahun - 1;
$query = $this->db->query("SELECT
SUM(CASE WHEN TAHUN <= '".$tahun."' THEN JUMLAHWP ELSE 0 END) WPADMNOW,
SUM(CASE WHEN TAHUN <= '".$tahunl."' THEN JUMLAHWP ELSE 0 END) WPADMPAST
FROM WP_TERDAFTAR");
return $query;
}
}

191
app/Views/ppm/dashboard.php

@ -53,8 +53,8 @@ foreach ($penerimaan as $row) {
$penpast += $row->PENL;
$capaian = ($pennow / $tgt) * 100;
$growth = (($pennow - $penpast) / $penpast) * 100;
$selisih = $penpast - $pennow;
$carryover = $tgt - $pennow;
$selisih = $pennow - $penpast;
$carryover = $pennow - $tgt;
}
@ -204,7 +204,7 @@ $hariini = date('d-m-y');
<div class="widget-body">
<div class="d-flex justify-content-between align-items-center">
<div class="state">
<h6>Carry Over</h6>
<h6>Delta</h6>
<h6><b><?= number_format($carryover, 0, ',', '.') ?></b></h6>
</div>
<div class="icon">
@ -226,6 +226,15 @@ $hariini = date('d-m-y');
<div class="row align-items-center">
<div class="col-lg-8 col-md-12">
<h3 class="card-title">Breakdown Penerimaan</h3>
<?php
$totwpskbyr = $wp_sk['WPSWP'] + $wp_sk['WPKWP'];
$totwpskbyrl = $wp_sk['WPSWPL'] + $wp_sk['WPKWPL'];
$wpsktbyrn = $wp_sk['WPSBYRN'] + $wp_sk['WPKBYRN'];
$wpsktbyrl = $wp_sk['WPSBYRP'] + $wp_sk['WPKBYRP'];
$totwpall = $wp_terdaftar['WPS'] + $wp_terdaftar['WPK'];
?>
</div>
<div class="col-lg-6 col-md-12">
@ -233,8 +242,8 @@ $hariini = date('d-m-y');
<h5><ion-icon name="people"></ion-icon>Strategis</h5>
</div>
<div class="row mb-15">
<div class="col-9">Penerimaan</div>
<div class="col-3 text-right">28%</div>
<div class="col-8">Penerimaan</div>
<div class="col-4 text-right"><?= number_format($wp_sk['WPSBYRN'], 0, ',', '.') ?></div>
<div class="col-12">
<div class="progress progress-sm mt-5">
<div class="progress-bar-striped progress-bar-animated bg-green" role="progressbar" style="width: 48%" aria-valuenow="48" aria-valuemin="0" aria-valuemax="100"></div>
@ -243,27 +252,27 @@ $hariini = date('d-m-y');
</div>
<div class="row mb-15">
<div class="col-9">Growth</div>
<div class="col-3 text-right">28%</div>
<div class="col-3 text-right"><?= number_format(($wp_sk['WPSBYRN'] - $wp_sk['WPSBYRP']) / $wp_sk['WPSBYRP'] * 100, 2) ?>%</div>
<div class="col-12">
<div class="progress progress-sm mt-5">
<div class="progress-bar-striped progress-bar-animated bg-green" role="progressbar" style="width: 48%" aria-valuenow="48" aria-valuemin="0" aria-valuemax="100"></div>
<div class="progress-bar-striped progress-bar-animated bg-green" role="progressbar" style="width: <?= number_format(($wp_sk['WPSBYRN'] - $wp_sk['WPSBYRP']) / $wp_sk['WPSBYRP'] * 100, 2) ?>%" aria-valuenow="<?= number_format(($wp_sk['WPSBYRN'] - $wp_sk['WPSBYRP']) / $wp_sk['WPSBYRP'] * 100, 2) ?>" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="row mb-15">
<div class="col-9">Peranan</div>
<div class="col-3 text-right">28%</div>
<div class="col-3 text-right"><?= number_format($wp_sk['WPSBYRN'] / $wpsktbyrn * 100, 2) ?>%</div>
<div class="col-12">
<div class="progress progress-sm mt-5">
<div class="progress-bar-striped progress-bar-animated bg-green" role="progressbar" style="width: 48%" aria-valuenow="48" aria-valuemin="0" aria-valuemax="100"></div>
<div class="progress-bar-striped progress-bar-animated bg-green" role="progressbar" style="width: <?= number_format($wp_sk['WPSBYRN'] / $wpsktbyrn * 100, 2) ?>%" aria-valuenow="<?= number_format($wp_sk['WPSBYRN'] / $wpsktbyrn * 100, 2) ?>" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="row mb-15">
<div class="col-9">WP Terdaftar</div>
<div class="col-3 text-right">28%</div>
<div class="col-3 text-right"><?= number_format($wp_terdaftar['WPS'], 0, ',', '.') ?></div>
<div class="col-12">
<div class="progress progress-sm mt-5">
<div class="progress-bar-striped progress-bar-animated bg-green" role="progressbar" style="width: 48%" aria-valuenow="48" aria-valuemin="0" aria-valuemax="100"></div>
@ -273,7 +282,7 @@ $hariini = date('d-m-y');
<div class="row mb-15">
<div class="col-9">WP Bayar</div>
<div class="col-3 text-right">28%</div>
<div class="col-3 text-right"><?= number_format($wp_sk['WPSWP'], 0, ',', '.') ?></div>
<div class="col-12">
<div class="progress progress-sm mt-5">
<div class="progress-bar-striped progress-bar-animated bg-green" role="progressbar" style="width: 48%" aria-valuenow="48" aria-valuemin="0" aria-valuemax="100"></div>
@ -283,10 +292,10 @@ $hariini = date('d-m-y');
<div class="row mb-15">
<div class="col-9">Ratio(%)</div>
<div class="col-3 text-right">28%</div>
<div class="col-3 text-right"><?= number_format($wp_sk['WPSWP'] / $wp_terdaftar['WPS'] * 100, 2) ?></div>
<div class="col-12">
<div class="progress progress-sm mt-5">
<div class="progress-bar-striped progress-bar-animated bg-green" role="progressbar" style="width: 48%" aria-valuenow="48" aria-valuemin="0" aria-valuemax="100"></div>
<div class="progress-bar-striped progress-bar-animated bg-green" role="progressbar" style="width: <?= number_format($wp_sk['WPSWP'] / $wp_terdaftar['WPS'] * 100, 2) ?>%" aria-valuenow="<?= number_format(($wp_sk['WPSWP'] / $wp_terdaftar['WPS']) * 100, 2) ?>" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
@ -296,8 +305,8 @@ $hariini = date('d-m-y');
<h5><ion-icon name="aperture"></ion-icon>Kewilayahan</h5>
</div>
<div class="row mb-15">
<div class="col-9">Penerimaan</div>
<div class="col-3 text-right">28%</div>
<div class="col-8">Penerimaan</div>
<div class="col-4 text-right"><?= number_format($wp_sk['WPKBYRN'], 0, ',', '.') ?></div>
<div class="col-12">
<div class="progress progress-sm mt-5">
<div class="progress-bar-striped progress-bar-animated bg-primary " role="progressbar" style="width: 48%" aria-valuenow="48" aria-valuemin="0" aria-valuemax="100"></div>
@ -306,25 +315,25 @@ $hariini = date('d-m-y');
</div>
<div class="row mb-15">
<div class="col-9">Growth</div>
<div class="col-3 text-right">28%</div>
<div class="col-3 text-right"><?= number_format(($wp_sk['WPKBYRN'] - $wp_sk['WPKBYRP']) / $wp_sk['WPKBYRP'] * 100, 2) ?>%</div>
<div class="col-12">
<div class="progress progress-sm mt-5">
<div class="progress-bar-striped progress-bar-animated bg-primary" role="progressbar" style="width: 48%" aria-valuenow="48" aria-valuemin="0" aria-valuemax="100"></div>
<div class="progress-bar-striped progress-bar-animated bg-primary" role="progressbar" style="width: <?= number_format(($wp_sk['WPKBYRN'] - $wp_sk['WPKBYRP']) / $wp_sk['WPKBYRP'] * 100, 2) ?>%" aria-valuenow="<?= number_format(($wp_sk['WPKBYRN'] - $wp_sk['WPKBYRP']) / $wp_sk['WPKBYRP'] * 100, 2) ?>" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="row mb-15">
<div class="col-9">Peranan</div>
<div class="col-3 text-right">28%</div>
<div class="col-3 text-right"><?= number_format($wp_sk['WPKBYRN'] / $wpsktbyrn * 100, 2) ?>%</div>
<div class="col-12">
<div class="progress progress-sm mt-5">
<div class="progress-bar-striped progress-bar-animated bg-primary" role="progressbar" style="width: 48%" aria-valuenow="48" aria-valuemin="0" aria-valuemax="100"></div>
<div class="progress-bar-striped progress-bar-animated bg-primary" role="progressbar" style="width: <?= number_format($wp_sk['WPKBYRN'] / $wpsktbyrn * 100, 2) ?>%" aria-valuenow="<?= number_format($wp_sk['WPKBYRN'] / $wpsktbyrn * 100, 2) ?>" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="row mb-15">
<div class="col-9">WP Terdaftar</div>
<div class="col-3 text-right">28%</div>
<div class="col-3 text-right"><?= number_format($wp_terdaftar['WPK'], 0, ',', '.') ?></div>
<div class="col-12">
<div class="progress progress-sm mt-5">
<div class="progress-bar-striped progress-bar-animated bg-primary" role="progressbar" style="width: 48%" aria-valuenow="48" aria-valuemin="0" aria-valuemax="100"></div>
@ -333,7 +342,7 @@ $hariini = date('d-m-y');
</div>
<div class="row mb-15">
<div class="col-9">WP Bayar</div>
<div class="col-3 text-right">28%</div>
<div class="col-3 text-right"><?= number_format($wp_sk['WPKWP'], 0, ',', '.') ?></div>
<div class="col-12">
<div class="progress progress-sm mt-5">
<div class="progress-bar-striped progress-bar-animated bg-primary" role="progressbar" style="width: 48%" aria-valuenow="48" aria-valuemin="0" aria-valuemax="100"></div>
@ -342,10 +351,10 @@ $hariini = date('d-m-y');
</div>
<div class="row mb-15">
<div class="col-9">Ratio(%)</div>
<div class="col-3 text-right">28%</div>
<div class="col-3 text-right"><?= number_format($wp_sk['WPKWP'] / $wp_terdaftar['WPK'] * 100, 2) ?>%</div>
<div class="col-12">
<div class="progress progress-sm mt-5">
<div class="progress-bar-striped progress-bar-animated bg-primary" role="progressbar" style="width: 48%" aria-valuenow="48" aria-valuemin="0" aria-valuemax="100"></div>
<div class="progress-bar-striped progress-bar-animated bg-primary" role="progressbar" style="width: <?= number_format($wp_sk['WPKWP'] / $wp_terdaftar['WPK'] * 100, 2) ?>%" aria-valuenow="<?= number_format($wp_sk['WPKWP'] / $wp_terdaftar['WPK'] * 100, 2) ?>" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
@ -361,6 +370,37 @@ $hariini = date('d-m-y');
<h3>Info Wajib Pajak</h3>
</div>
<div class="card-body">
<table class="table table-hover">
<thead>
<tr>
<th class="text-center">Tahun</th>
<th class="text-center">WP TERDAFTAR</th>
<th class="text-center">WP BAYAR</th>
<th class="text-center">Ratio (%)</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center"><?php echo $tahunx ?></td>
<td class="text-center"><?= number_format($wpadm['WPADMNOW'], 0, ',', '.') ?></td>
<td class="text-center"><?= number_format($totwpskbyr, 0, ',', '.') ?></td>
<td class="text-center"> <?= number_format(($totwpskbyr / $totwpall) * 100, 2) ?></td>
</tr>
<tr>
<td class="text-center"><?php echo $tahunx - 1 ?></td>
<td class="text-center"><?= number_format($wpadm['WPADMPAST'], 0, ',', '.') ?></td>
<td class="text-center"><?= number_format($totwpskbyrl, 0, ',', '.') ?></td>
<td class="text-center"> <?= number_format(($totwpskbyrl / $wpadm['WPADMPAST']) * 100, 2) ?></td>
</tr>
<tr>
<td class="text-center">Delta</td>
<td class="text-center"><?= number_format(($wpadm['WPADMNOW'] - $wpadm['WPADMPAST']) / $wpadm['WPADMPAST'] * 100, 2) ?>%</td>
<td class="text-center"><?= number_format(($totwpskbyr - $totwpskbyrl) / $totwpskbyrl * 100, 2) ?>%</td>
<td class="text-center">-</td>
</tr>
</tbody>
</table>
</div>
</div>
@ -371,7 +411,7 @@ $hariini = date('d-m-y');
<div class="col-md-6">
<div class="card">
<div class="card-header">
<h3>Payment Compliance</h3>
<h3>Payment Compliance <?= $tahunx ?></h3>
<div class="card-header-right">
<ul class="list-unstyled card-option">
<li><i class="ik ik-chevron-left action-toggle"></i></li>
@ -390,7 +430,7 @@ $hariini = date('d-m-y');
<div class="col-md-6">
<div class="card">
<div class="card-header">
<h3>PerJenis Pajak</h3>
<h3>PerJenis Pajak <?= $tahunx ?></h3>
<div class="card-header-right">
<ul class="list-unstyled card-option">
<li><i class="ik ik-chevron-left action-toggle"></i></li>
@ -439,7 +479,7 @@ $hariini = date('d-m-y');
$pctwp = $row->WPBYR / $totwpsof * 100;
$pctpen = $row->TOTAL / $totjmlsof * 100;
if ($pctwp < 20) {
if ($pctwp < 0) {
$mpctwp = "text-danger";
$markmpctwp = "<ion-icon name='arrow-down-outline'></ion-icon>";
} else {
@ -447,7 +487,7 @@ $hariini = date('d-m-y');
$markmpctwp = "<ion-icon name='arrow-up-outline'></ion-icon>";
}
if ($pctpen < 20) {
if ($pctpen < 0) {
$mpctpen = "text-danger";
$markmpctpen = "<ion-icon name='arrow-down-outline'></ion-icon>";
} else {
@ -463,9 +503,16 @@ $hariini = date('d-m-y');
<td class="text-right"><?= number_format($row->TOTAL, 0, ',', '.') ?></td>
<td class="text-right <?= $mpctpen ?>"><?= number_format($pctpen, 2) ?> <?= $markmpctpen ?></td>
</tbody>
<?php } ?>
<tfoot>
<th>Total</th>
<th class="text-right"><?= number_format($totwpsof, 0, ',', '.') ?></th>
<th></th>
<th class="text-right"><?= number_format($totjmlsof, 0, ',', '.') ?></th>
</tfoot>
</table>
<small class="text-primary">*) Nilai Persentase dibawah 20% berwarna merah</small>
<small class="text-primary">*) Nilai Persentase dibawah 0% berwarna merah</small>
</div>
</div>
@ -477,7 +524,7 @@ $hariini = date('d-m-y');
<div class="card">
<div class="card-body">
<h5 class="card-title">PENERIMAAN PER KATEGORI</h5>
<h5 class="card-title">PENERIMAAN PER KATEGORI <?= $tahunx ?></h5>
<table class="table table-hover">
<thead class='thead-dark'>
<tr class="table-active">
@ -732,47 +779,55 @@ $hariini = date('d-m-y');
};
}(Highcharts));
Highcharts.chart('paycomp', {
chart: {
type: 'pie'
},
title: {
text: ''
},
subtitle: {
text: ''
},
tooltip: {
pointFormat: '{point.name}: <b>{point.percentage:.1f}%</b> <br> jmlWP : {point.y} '
},
accessibility: {
point: {
valueSuffix: '%'
$(function() {
Highcharts.setOptions({
lang: {
thousandsSep: '.'
}
},
plotOptions: {
pie: {
allowPointSelect: true,
borderWidth: 2,
cursor: 'pointer',
dataLabels: {
enabled: true,
format: '<b>{point.name}</b><br>{point.percentage:.1f}%',
distance: 20
});
Highcharts.chart('paycomp', {
chart: {
type: 'pie'
},
title: {
text: ''
},
subtitle: {
text: ''
},
tooltip: {
pointFormat: '{point.name}: <b>{point.percentage:.1f}%</b> <br> jmlWP : {point.y} '
},
accessibility: {
point: {
valueSuffix: '%'
}
}
},
credits: {
enabled: false
},
series: [{
// Disable mouse tracking on load, enable after custom animation
enableMouseTracking: false,
animation: {
duration: 2000
},
colorByPoint: true,
data: <?php echo $datapaycomp ?>
}]
plotOptions: {
pie: {
allowPointSelect: true,
borderWidth: 2,
cursor: 'pointer',
dataLabels: {
enabled: true,
format: '<b>{point.name}</b><br>{point.percentage:.1f}% <br> WP : {point.y:,.0f} ',
distance: 20
}
}
},
credits: {
enabled: false
},
series: [{
// Disable mouse tracking on load, enable after custom animation
enableMouseTracking: false,
animation: {
duration: 2000
},
colorByPoint: true,
data: <?php echo $datapaycomp ?>
}]
});
});
</script>

1
writable/debugbar/debugbar_1709275962.195083.json

File diff suppressed because one or more lines are too long

1
writable/debugbar/debugbar_1709276003.014256.json

File diff suppressed because one or more lines are too long

1
writable/debugbar/debugbar_1709279229.539252.json

File diff suppressed because one or more lines are too long

1
writable/debugbar/debugbar_1709280432.360484.json

File diff suppressed because one or more lines are too long

1
writable/debugbar/debugbar_1709280737.076727.json

File diff suppressed because one or more lines are too long

1
writable/debugbar/debugbar_1709280800.861250.json

File diff suppressed because one or more lines are too long

1
writable/debugbar/debugbar_1709280830.149204.json

File diff suppressed because one or more lines are too long

1
writable/debugbar/debugbar_1709280861.357492.json

File diff suppressed because one or more lines are too long

1
writable/debugbar/debugbar_1709280906.410257.json

File diff suppressed because one or more lines are too long

1
writable/debugbar/debugbar_1709280932.076715.json

File diff suppressed because one or more lines are too long

1
writable/debugbar/debugbar_1709283685.797203.json

File diff suppressed because one or more lines are too long

1
writable/debugbar/debugbar_1709284206.418118.json

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save