|
51 | 51 | </div>
|
52 | 52 | </div>
|
53 | 53 | <div class="mt-6 flex space-x-3 md:ml-4 md:mt-0">
|
54 |
| - <button type="button" class="inline-flex items-center rounded-md bg-white px-3 py-2 text-sm font-semibold text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 hover:bg-gray-50">Add Income</button> |
| 54 | + <button type="button" class="inline-flex items-center rounded-md bg-white px-3 py-2 text-sm font-semibold text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 hover:bg-gray-50" onclick="openIncomeModal()">Add Income</button> |
55 | 55 | <button type="button" class="inline-flex items-center rounded-md bg-cyan-600 px-3 py-2 text-sm font-semibold text-white shadow-sm hover:bg-cyan-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-cyan-600">Add Expense</button>
|
56 | 56 | </div>
|
57 | 57 | </div>
|
|
143 | 143 | </tr>
|
144 | 144 | </thead>
|
145 | 145 | <tbody class="divide-y divide-gray-200 bg-white">
|
| 146 | + @foreach($transactionList as $transaction) |
| 147 | + <tr class="bg-white"> |
| 148 | + <td class="w-full max-w-0 whitespace-nowrap px-6 py-4 text-sm text-gray-900"> |
| 149 | + <div class="flex"> |
| 150 | + <a href="#" class="group inline-flex space-x-2 truncate text-sm"> |
| 151 | + <svg class="h-5 w-5 flex-shrink-0 text-gray-400 group-hover:text-gray-500" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> |
| 152 | + <path fill-rule="evenodd" d="M1 4a1 1 0 011-1h16a1 1 0 011 1v8a1 1 0 01-1 1H2a1 1 0 01-1-1V4zm12 4a3 3 0 11-6 0 3 3 0 016 0zM4 9a1 1 0 100-2 1 1 0 000 2zm13-1a1 1 0 11-2 0 1 1 0 012 0zM1.75 14.5a.75.75 0 000 1.5c4.417 0 8.693.603 12.749 1.73 1.111.309 2.251-.512 2.251-1.696v-.784a.75.75 0 00-1.5 0v.784a.272.272 0 01-.35.25A49.043 49.043 0 001.75 14.5z" clip-rule="evenodd" /> |
| 153 | + </svg> |
| 154 | + <p class="truncate text-gray-500 group-hover:text-gray-900">{{ $transaction->title }}</p> |
| 155 | + </a> |
| 156 | + </div> |
| 157 | + </td> |
| 158 | + <td class="whitespace-nowrap px-6 py-4 text-right text-sm text-gray-500"> |
| 159 | + <span class="font-medium text-gray-900">${{ number_format($transaction->credit > 0 ? $transaction->credit : $transaction->debit, 0, '.', ',') }}</span> |
| 160 | + USD |
| 161 | + </td> |
| 162 | + <td class="hidden whitespace-nowrap px-6 py-4 text-sm text-gray-500 md:block"> |
| 163 | + <span class="inline-flex items-center rounded-full px-2.5 py-0.5 text-xs font-medium |
| 164 | + @if($transaction->status === 'Success') |
| 165 | + bg-green-100 text-green-800 |
| 166 | + @elseif($transaction->status === 'Failed') |
| 167 | + bg-red-100 text-red-800 |
| 168 | + @elseif($transaction->status === 'Pending') |
| 169 | + bg-yellow-100 text-yellow-800 |
| 170 | + @else |
| 171 | + bg-gray-100 text-gray-800 |
| 172 | + @endif |
| 173 | + capitalize"> |
| 174 | + {{ $transaction->status }} |
| 175 | + </span> |
| 176 | + </td> |
| 177 | + |
| 178 | + <td class="whitespace-nowrap px-6 py-4 text-right text-sm text-gray-500"> |
| 179 | + <time datetime="2020-07-11">{{$transaction->created_at->format('F j, Y')}}</time> |
| 180 | + </td> |
| 181 | + </tr> |
| 182 | + @endforeach |
146 | 183 | <tr class="bg-white">
|
147 | 184 | <td class="w-full max-w-0 whitespace-nowrap px-6 py-4 text-sm text-gray-900">
|
148 | 185 | <div class="flex">
|
|
195 | 232 | </main>
|
196 | 233 | </div>
|
197 | 234 | </div>
|
| 235 | + |
| 236 | +<!-- Add Income Modal --> |
| 237 | +<div id="incomeModal" class="fixed inset-0 z-10 flex items-center justify-center bg-black bg-opacity-50 hidden"> |
| 238 | + <div class="bg-white p-6 rounded-md shadow-md" style="width: 30%;"> |
| 239 | + <h2 class="text-lg font-semibold mb-4">Add Income</h2> |
| 240 | + <form action="{{ route('transaction.store') }}" method="POST"> |
| 241 | + @csrf |
| 242 | + <div class="mb-4"> |
| 243 | + <label for="title" class="block font-semibold">Title <span class="text-red-500">*</span></label> |
| 244 | + <input type="text" name="title" id="title" required class="w-full border rounded-md px-3 py-2"> |
| 245 | + </div> |
| 246 | + <div class="mb-4"> |
| 247 | + <label for="description" class="block font-semibold">Description</label> |
| 248 | + <textarea name="description" id="description" class="w-full border rounded-md px-3 py-2"></textarea> |
| 249 | + </div> |
| 250 | + <div class="mb-4" style="width: 25%"> |
| 251 | + <label for="credit" class="block font-semibold">Credit</label> |
| 252 | + <input type="number" name="credit" id="credit" class="w-full border rounded-md px-3 py-2"> |
| 253 | + </div> |
| 254 | + <div class="mb-4" style="width: 25%"> |
| 255 | + <label for="status" class="block font-semibold">Status</label> |
| 256 | + <select name="status" id="status" class="w-full border rounded-md px-3 py-2"> |
| 257 | + <option value="Success">Success</option> |
| 258 | + <option value="Failed">Failed</option> |
| 259 | + <option value="Pending">Pending</option> |
| 260 | + </select> |
| 261 | + </div> |
| 262 | + <div class="flex justify-end"> |
| 263 | + <button type="submit" class="px-4 py-2 bg-cyan-600 text-white font-semibold rounded-md hover:bg-cyan-500 mr-2" onclick="closeIncomeModal()">Submit</button> |
| 264 | + <button type="button" class="px-4 py-2 bg-gray-300 text-gray-900 font-semibold rounded-md hover:bg-gray-400" onclick="closeIncomeModal()">Cancel</button> |
| 265 | + </div> |
| 266 | + </form> |
| 267 | + </div> |
| 268 | +</div> |
| 269 | + |
198 | 270 | </body>
|
199 | 271 | </html>
|
| 272 | +<script> |
| 273 | + function openIncomeModal() { |
| 274 | + document.getElementById('incomeModal').classList.remove('hidden'); |
| 275 | + } |
| 276 | +
|
| 277 | + function closeIncomeModal() { |
| 278 | + document.getElementById('incomeModal').classList.add('hidden'); |
| 279 | + } |
| 280 | +</script> |
| 281 | +<style> |
| 282 | + /* Add custom styles for the modal */ |
| 283 | + /*#incomeModal {*/ |
| 284 | + /* width: 30%; !* Set the modal width to cover 30% of the window *!*/ |
| 285 | + /* max-width: 400px; !* Limit the maximum width to 400px to ensure it's not too large *!*/ |
| 286 | + /*}*/ |
| 287 | +
|
| 288 | + /* Center the modal horizontally and vertically */ |
| 289 | + /*#incomeModal .modal-content {*/ |
| 290 | + /* margin: 0 auto;*/ |
| 291 | + /* margin-top: 15vh;*/ |
| 292 | + /*}*/ |
| 293 | +</style> |
0 commit comments