diff --git a/app/Views/bagStockDetails.php b/app/Views/bagStockDetails.php
index 996b2757..2dd36a9c 100644
--- a/app/Views/bagStockDetails.php
+++ b/app/Views/bagStockDetails.php
@@ -166,10 +166,35 @@
color: #ffffff;
}
- .modal {
- padding-right: 30% ! important;
- }
+
+
+
+
+
+ modify('first day of this month')->format('Y-m-d');
+ $endDate = $date->modify('last day of this month')->format('Y-m-d');
+
+ $datesInMonth = [];
+
+
+ $period = new DatePeriod(
+ new DateTime($startDate),
+ new DateInterval('P1D'),
+ (new DateTime($endDate))->modify('+1 day')
+ );
+
+ foreach ($period as $day) {
+ $datesInMonth[] = $day->format('Y-m-d');
+ }
+
+ ?>
+
+
@@ -214,6 +239,19 @@
+
+
@@ -232,7 +270,7 @@
= $bagMaterial['MaterialName']?>
-
+
|
@@ -348,28 +386,6 @@
with initial values 0 for entire month -->
- modify('first day of this month')->format('Y-m-d');
- $endDate = $date->modify('last day of this month')->format('Y-m-d');
-
- $datesInMonth = [];
-
-
- $period = new DatePeriod(
- new DateTime($startDate),
- new DateInterval('P1D'),
- (new DateTime($endDate))->modify('+1 day')
- );
-
- foreach ($period as $day) {
- $datesInMonth[] = $day->format('Y-m-d');
- }
-
- ?>
-
$dateInMonth){ ?>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+