CasperSecurity

Current Path : /var/www/orientalss.com/storage/framework/views/
Upload File :
Current File : /var/www/orientalss.com/storage/framework/views/ef9f76f405ecadcbf28807fc3451209180f34f66.php

<div class="row">
    <div class="card z-auto p-[25px]" style="min-height: 690px;">
        <div class="card-header">
            <div class="flex justify-between items-center mb-2">
                <h1 class="heading text-[1.8rem] font-medium uppercase">TDS Section</h1>
                <div class="flex items-center">
                    <a class="btn btn-primary duration-500 hover:bg-hover-primary py-[5px] px-3 text-[13px] rounded text-white bg-primary leading-[18px] inline-block border border-primary ml-2 offcanvas-toggle cursor-pointer"
                       wire:click="showmodalclick">+ Add New TDS Section</a>
                </div>
            </div>
        </div>
        <div class="card-body">
            <div class="p-[1.563rem]">
                <div class="flex justify-between">
                    <div class="w-1/4 px-0 py-2">
                        <input wire:model="search" type="text"
                               class="form-control relative text-[13px] text-dark h-[2.813rem] border border-dark block rounded-md py-1.5 px-3 duration-500  dark:hover:border-b-color outline-none w-full"
                               id="search" placeholder="Search ..." autocomplete="off"/>
                    </div>
                    <div class="w-1/3 px-1">
                        <div class="row flex justify-between">
                            <div class="w-1/3 px-2 py-2 justify-end">
                                <select name="orderBy" wire:model="orderBy"
                                        class="form-select w-full rounded-md style-1 py-1.5 px-3 bg-transparent text-[13px] font-normal outline-none relative focus:ring-0 border border-dark text-dark h-[2.813rem] leading-[1.813rem]">
                                    <option value="id">ID</option>
                                </select>
                            </div>
                            <div class="w-1/3 px-2 py-2 justify-end">
                                <select name="orderAsc" wire:model="orderAsc"
                                        class="form-select w-full rounded-md style-1 py-1.5 px-3 bg-transparent text-[13px] font-normal outline-none relative focus:ring-0 border border-dark text-dark h-[2.813rem] leading-[1.813rem]">
                                    <option value="1">Ascending</option>
                                    <option value="0">Descending</option>
                                </select>
                            </div>
                            <div class="w-1/3 px-2 py-2 justify-end">
                                <select name="perPage" wire:model="perPage"
                                        class="form-select w-full rounded-md style-1 py-1.5 px-3 bg-transparent text-[13px] font-normal outline-none relative focus:ring-0 border border-dark text-dark h-[2.813rem] leading-[1.813rem]">
                                    <option value="10">10</option>
                                    <option value="25">25</option>
                                    <option value="50">50</option>
                                    <option value="100">100</option>
                                    <option value="500">500</option>
                                </select>
                            </div>
                        </div>
                    </div>
                </div>

                <div class="overflow-x-auto table-scroll">
                    <table id="dept_datatable" class="display table w-full">
                        <thead>
                        <tr class="bg-transparent">
                            <th class="text-black py-2 px-[0.9375rem] border-2 border-solid border-[#E6E6E6] dark:border-[#444444] capitalize whitespace-nowrap text-xs font-medium text-center">
                                Action
                            </th>
                            <th class="text-black py-2 px-[0.9375rem] border-2 border-solid border-[#E6E6E6] dark:border-[#444444] capitalize whitespace-nowrap text-xs font-medium text-center">
                                Status
                            </th>
                            <th class="text-black py-2 px-[0.9375rem] border-2 border-solid border-[#E6E6E6] dark:border-[#444444] capitalize whitespace-nowrap text-xs font-medium text-center">
                                Section Code
                            </th>
                            <th class="text-black py-2 px-[0.9375rem] border-2 border-solid border-[#E6E6E6] dark:border-[#444444] capitalize whitespace-nowrap text-xs font-medium text-center">
                                Nature Of Payment
                            </th>
                            <th class="text-black py-2 px-[0.9375rem] border-2 border-solid border-[#E6E6E6] dark:border-[#444444] capitalize whitespace-nowrap text-xs font-medium text-center">
                                Ledger Head
                            </th>
                        </tr>
                        </thead>
                        <tbody>
                        <?php if(sizeof($datatable)>0): ?>
                            <?php $__currentLoopData = $datatable; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $data): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                                <tr class="bg-transparent">
                                    <td class="bg-transparent border-2 border-solid border-[#E6E6E6] dark:border-[#444444]  py-2 px-[0.9375rem] capitalize whitespace-nowrap text-[15px] font-normal text-center">
                                        <div class="flex justify-center">
                                            <a href="javascript:void(0);" class="btn w-[1.625rem] h-[1.625rem] leading-[1.625rem] rounded-md text-center text-white bg-primary hover:bg-hover-primary duration-300 mr-1 offcanvas-toggle" wire:click="updateclick(<?php echo e($data->id); ?>)"><i class="fas fa-pencil-alt text-[0.875em]"></i></a>
                                        </div>
                                    </td>
                                    <td class="text-black border-2 border-solid border-[#E6E6E6] dark:border-[#444444]  bg-transparent xl:py-2 py-2 xl:px-[0.9375rem] px-[0.9375rem] capitalize whitespace-nowrap text-xs font-normal text-center">
                                        <?php if($data->status == '1'): ?>
                                            <span class="text-xs py-[5px] px-3 rounded font-medium leading-[1.5] text-success bg-success-light">Active</span>
                                        <?php else: ?>
                                            <span class="text-xs py-[5px] px-3 rounded font-medium leading-[1.5] text-dark bg-d-light-2">Inactive</span>
                                        <?php endif; ?>
                                    </td>
                                    <td class="text-black border-2 border-solid border-[#E6E6E6] dark:border-[#444444] bg-transparent xl:py-2 py-2 xl:px-[0.9375rem] px-[0.9375rem] capitalize whitespace-nowrap text-xs font-normal text-center"><?php echo e($data->tds_section_code); ?></td>
                                    <td class="text-black border-2 border-solid border-[#E6E6E6] dark:border-[#444444] bg-transparent xl:py-2 py-2 xl:px-[0.9375rem] px-[0.9375rem] capitalize whitespace-nowrap text-xs font-normal text-center"><?php echo e($data->tds_natureof_payment); ?></td>
                                    <td class="text-black border-2 border-solid border-[#E6E6E6] dark:border-[#444444] bg-transparent xl:py-2 py-2 xl:px-[0.9375rem] px-[0.9375rem] capitalize whitespace-nowrap text-xs font-normal text-center"><?php echo e($data->getLedgerHead->ledger_head_name); ?></td>
                            <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                        <?php else: ?>
                            <tr class="bg-transparent">
                                <td colspan="12" class="text-danger border-2 border-solid border-[#E6E6E6] dark:border-[#444444]  bg-transparent xl:py-2 py-2 xl:px-[0.9375rem] px-[0.9375rem] capitalize whitespace-nowrap xl:text-[15px] text-[15px] font-bold text-center">No Data Available</td>
                            </tr>
                        <?php endif; ?>
                        </tbody>
                    </table>
                </div>
                <div class="w-full" wire:ignore.self>
                    
                </div>
            </div>
        </div>
        <?php if(!$showmodal): ?>
            <div wire:ignore.self>
                <?php if (isset($component)) { $__componentOriginalc254754b9d5db91d5165876f9d051922ca0066f4 = $component; } ?>
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'notify::components.notify','data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
<?php $component->withName('notify::notify'); ?>
<?php if ($component->shouldRender()): ?>
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(Illuminate\View\AnonymousComponent::class))->getConstructor()): ?>
<?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
<?php endif; ?>
<?php $component->withAttributes([]); ?>
<?php echo $__env->renderComponent(); ?>
<?php endif; ?>
<?php if (isset($__componentOriginalc254754b9d5db91d5165876f9d051922ca0066f4)): ?>
<?php $component = $__componentOriginalc254754b9d5db91d5165876f9d051922ca0066f4; ?>
<?php unset($__componentOriginalc254754b9d5db91d5165876f9d051922ca0066f4); ?>
<?php endif; ?>
            </div>
        <?php endif; ?>
    </div>

    <div wire:ignore.self>
        <div class="fixed top-0 right-0 flex flex-col  w-1/2 h-[100vh] z-[1045] bg-white dark:bg-[#1E1E1E] text-body-color duration-500 ease-in-out offcanvas <?php if($showmodal): ?> <?php else: ?> is-closed <?php endif; ?>" id="offcanvasExample">
            <div class="ml-4 flex items-center justify-between p-4">
                <?php if($modelid): ?>
                    <h5 class="modal-title" id="#gridSystemModal">Update TDS</h5>
                <?php else: ?>
                    <h5 class="modal-title" id="#gridSystemModal">Add TDS</h5>
                <?php endif; ?>
                <button type="button" class="offcanvas-close h-6 w-6 box-content bg-danger-light rounded-md text-lg mr-4 p-2 opacity-50 hover:opacity-100 text-red" wire:click="closemodalclick">
                    <i class="fa-solid fa-xmark"></i>
                </button>
            </div>
            <div class="p-4 overflow-y-auto overflow-x-hidden dz-scroll">
                <div class="container-fluid px-[15px] py-0">
                    <?php if($modelid): ?>
                        <div class="flex justify-end mt-3 items-center">
                            <div class="xl:w-1/2 mb-4 flex justify-between">
                                <label for="exampleFormControlInputfirst"
                                       class="form-label mt-4">Status</label>
                                <div class="row">
                                    <div class="flex justify-end w-full px-2 py-2">
                                        <select name="orderAsc" wire:model="status"
                                                class="form-control relative text-[13px] text-body-color h-[2.813rem] border border-b-color block rounded-md py-1.5 px-3 duration-500 focus:border-primary dark:hover:border-b-color outline-none w-full">
                                            <option value="1">Active</option>
                                            <option value="0">Inactive</option>
                                        </select>
                                    </div>
                                </div>
                            </div>
                        </div>
                    <?php endif; ?>
                    <div class="xl:w-full border mb-2">
                        <div class="row p-2">
                        <div class="xl:w-1/3 flex" >
                            <div class="xl:w-full mb-3">
                                <label  class="form-label">Section Code<span class="text-danger">*</span></label>
                                <input type="text" name="tds_section_code" wire:model="tds_section_code" <?php if($fix == true): ?> disabled <?php endif; ?> class="form-control relative text-[13px] text-body-color h-[2.813rem] border border-b-color block rounded-md py-1.5 px-3 duration-500 focus:border-primary dark:hover:border-b-color outline-none w-full"  placeholder="Enter Section Code">
                                <?php if($section_code_message == true): ?><span class="w-full mt-1 text-xs text-danger">This code already exist</span><?php endif; ?>
                                <?php $__errorArgs = ['tds_section_code'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?> <span class="w-full mt-1 text-xs text-danger"><?php echo e($message); ?></span> <?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?>
                            </div>
                        </div>
                        <div class="xl:w-1/3 flex">
                            <div class="xl:w-full mb-3">
                                <label  class="form-label">Nature of Payment<span class="text-danger">*</span></label>
                                <input type="text" name="tds_natureof_payment" wire:model.defer="tds_natureof_payment" <?php if($fix == true): ?> disabled <?php endif; ?> class="form-control relative text-[13px] text-body-color h-[2.813rem] border border-b-color block rounded-md py-1.5 px-3 duration-500 focus:border-primary dark:hover:border-b-color outline-none w-full"  placeholder="Enter Nature Payment">
                                <?php $__errorArgs = ['tds_natureof_payment'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?> <span class="w-full mt-1 text-xs text-danger"><?php echo e($message); ?></span> <?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?>
                            </div>
                        </div>
                        <div class="xl:w-1/3 flex">
                            <div class="xl:w-full mb-4">
                                <label class="form-label">Ledger Head<span class="text-danger">*</span></label>
                                <select name="ledger_head_id" wire:model.defer="ledger_head_id" <?php if($fix == true): ?> disabled <?php endif; ?>
                                        class="form-control relative text-[13px] text-body-color h-[2.813rem] border border-b-color block rounded-md py-1.5 px-3 duration-500 focus:border-primary dark:hover:border-b-color outline-none w-full">
                                    <option value="">Select</option>
                                    <?php $__currentLoopData = $ledgerhead; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $ledger): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                                        <option value="<?php echo e($ledger->id); ?>"><?php echo e($ledger->ledger_head_name); ?></option>
                                    <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                                </select>
                                <?php $__errorArgs = ['ledger_head_name'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?> <span class="error text-danger"><?php echo e($message); ?></span> <?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?>
                            </div>
                        </div>
                        </div>
                        <div class="flex justify-end">
                          <?php if($modelid): ?>

                                <button class="btn btn-primary xl:py-[0.719rem] py-2.5 xl:px-[1.563rem] px-4 duration-300 xl:text-[15px] text-[13px] font-medium rounded text-white bg-primary leading-5 inline-block border border-primary hover:bg-hover-primary" wire:click="update"><i class="fa fa-pencil"aria-hidden="true"></i></button>
                            <?php endif; ?>
                        </div>
                    </div>

                    <div class="xl:w-full border mb-3 ">
                        <div class="xl:w-full flex justify-start p-2" >
                            <div class="sm:w-1/2 w-full mb-4 mr-2">
                                <label class="form-label"> Year<span class="text-danger">*</span></label>
                                <select name="year" wire:model.defer="tds_financial_year"
                                        class="form-control relative text-[13px] text-body-color h-[2.813rem] border border-b-color block rounded-md py-1.5 px-3 duration-500 focus:border-primary dark:hover:border-b-color outline-none w-full" placeholder="Select Year">
                                    <option value=" ">Select Year</option>
                                    <option value="<?php echo e($previous_year); ?>"><?php echo e($previous_year); ?></option>
                                    <option value="<?php echo e($current_year); ?>"><?php echo e($current_year); ?></option>






                                </select>
                            </div>
                            <div class="sm:w-1/2 w-full mb-4 justify-between mr-2">
                                <label class="form-label">Indivisual Rate<span class="text-danger">*</span></label>
                                <input type="number" name="tds_individual_rate" step="any" min="0" max="100" wire:model="tds_individual_rate" class="form-control relative text-[13px] text-body-color h-[2.813rem] border border-b-color block rounded-md py-1.5 px-3 duration-500 focus:border-primary dark:hover:border-b-color outline-none w-full" placeholder="Enter Individual Rate">
                                <?php if($ind_rate == true): ?> <span class="w-full mt-1 text-xs text-danger">Individual Rate should not be more than 100</span> <?php endif; ?>
                                <?php $__errorArgs = ['tds_individual_rate'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?> <span class="w-full mt-1 text-xs text-danger"><?php echo e($message); ?></span> <?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?>
                            </div>
                            <div class="sm:w-1/2 w-full mb-4 justify-end mr-2">
                                <label  class="form-label">Company Rate<span class="text-danger">*</span></label>
                                <input type="number" name="tds_company_rate" step="any" min="0" max="100" wire:model="tds_company_rate" class="form-control relative text-[13px] text-body-color h-[2.813rem] border border-b-color block rounded-md py-1.5 px-3 duration-500 focus:border-primary dark:hover:border-b-color outline-none w-full" placeholder="Enter Company Rate">
                                <?php if($cmp_value == true): ?> <span class="w-full mt-1 text-xs text-danger">Company Rate should not be more than 100</span> <?php endif; ?>
                                <?php $__errorArgs = ['tds_company_rate'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?> <span class="w-full mt-1 text-xs text-danger"><?php echo e($message); ?></span> <?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?>
                            </div>
                            <div class="sm:w-1/2 w-full mb-4 mr-2">
                                <label  class="form-label">PAN Rate<span class="text-danger">*</span></label>
                                <input type="number" name="tds_nopan_rate" step="any" min="0" max="100" wire:model="tds_nopan_rate" class="form-control relative text-[13px] text-body-color h-[2.813rem] border border-b-color block rounded-md py-1.5 px-3 duration-500 focus:border-primary dark:hover:border-b-color outline-none w-full"  placeholder="Enter NO PAN">
                                <?php if($pan_value == true): ?> <span class="w-full mt-1 text-xs text-danger">PAN Rate should not be more than 100</span> <?php endif; ?>
                                <?php $__errorArgs = ['tds_nopan_rate'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?> <span class="w-full mt-1 text-xs text-danger"><?php echo e($message); ?></span> <?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?>
                            </div>
                            <div class="sm:w-1/2 w-full mb-4 mr-2">
                                <label  class="form-label">Enter Amount<span class="text-danger">*</span></label>
                                <input type="number" name="tds_cutoff_amount" step="any" min="0"wire:model="tds_cutoff_amount" class="form-control relative text-[13px] text-body-color h-[2.813rem] border border-b-color block rounded-md py-1.5 px-3 duration-500 focus:border-primary dark:hover:border-b-color outline-none w-full"  placeholder="Enter Amount">
                                <?php $__errorArgs = ['tds_cutoff_amount'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?> <span class="w-full mt-1 text-xs text-danger"><?php echo e($message); ?></span> <?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?>
                            </div>
                            <div class="sm:w-1/3 flex items-center w-full">
                                <button class="btn btn-primary xl:py-[0.719rem] py-2.5 xl:px-[1.563rem] px-4 duration-300 xl:text-[15px] text-[13px] font-medium rounded text-white bg-primary leading-5 inline-block border border-primary hover:bg-hover-primary" wire:click="save"><i class="fa fa-plus" aria-hidden="true"></i></button>
                            </div>

                        </div>

                    </div>
                    <div class="xl:w-full border mb-2">
                        <div class="overflow-x-auto table-scroll">
                            <table id="dept_datatable" class="display table w-full">
                                <thead>
                                <tr class="bg-transparent">
                                    <th class="text-black py-2 px-[0.9375rem] border-2 border-solid border-[#E6E6E6] dark:border-[#444444] capitalize whitespace-nowrap text-xs font-medium text-center">FINANCIAL YEAR</th>
                                    <th class="text-black py-2 px-[0.9375rem] border-2 border-solid border-[#E6E6E6] dark:border-[#444444] capitalize whitespace-nowrap text-xs font-medium text-center">INDIVIDUAL RATE</th>
                                    <th class="text-black py-2 px-[0.9375rem] border-2 border-solid border-[#E6E6E6] dark:border-[#444444] capitalize whitespace-nowrap text-xs font-medium text-center">COMPANY RATE</th>
                                    <th class="text-black py-2 px-[0.9375rem] border-2 border-solid border-[#E6E6E6] dark:border-[#444444] capitalize whitespace-nowrap text-xs font-medium text-center">NO PAN RATE</th>
                                    <th class="text-black py-2 px-[0.9375rem] border-2 border-solid border-[#E6E6E6] dark:border-[#444444] capitalize whitespace-nowrap text-xs font-medium text-center">CUT OFF AMOUNT</th>
                                    <th class="text-black py-2 px-[0.9375rem] border-2 border-solid border-[#E6E6E6] dark:border-[#444444] capitalize whitespace-nowrap text-xs font-medium text-center">ACTION</th>
                                </tr>
                                </thead>
                                <tbody>
                                <?php if(sizeof($tdstable)>0): ?>
                                    <?php $__currentLoopData = $tdstable; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $tds): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                                        <tr class="bg-transparent">
                                            <td class="text-black border-2 border-solid border-[#E6E6E6] dark:border-[#444444] bg-transparent xl:py-2 py-2 xl:px-[0.9375rem] px-[0.9375rem] capitalize whitespace-nowrap text-xs font-normal text-center"><?php echo e($tds->tds_financial_year); ?></td>
                                            <td class="text-black border-2 border-solid border-[#E6E6E6] dark:border-[#444444] bg-transparent xl:py-2 py-2 xl:px-[0.9375rem] px-[0.9375rem] capitalize whitespace-nowrap text-xs font-normal text-center"><?php echo e($tds->tds_individual_rate); ?></td>
                                            <td class="text-black border-2 border-solid border-[#E6E6E6] dark:border-[#444444] bg-transparent xl:py-2 py-2 xl:px-[0.9375rem] px-[0.9375rem] capitalize whitespace-nowrap text-xs font-normal text-center"><?php echo e($tds->tds_company_rate); ?></td>
                                            <td class="text-black border-2 border-solid border-[#E6E6E6] dark:border-[#444444] bg-transparent xl:py-2 py-2 xl:px-[0.9375rem] px-[0.9375rem] capitalize whitespace-nowrap text-xs font-normal text-center"><?php echo e($tds->tds_nopan_rate); ?></td>
                                            <td class="text-black border-2 border-solid border-[#E6E6E6] dark:border-[#444444] bg-transparent xl:py-2 py-2 xl:px-[0.9375rem] px-[0.9375rem] capitalize whitespace-nowrap text-xs font-normal text-center"><?php echo e($tds->tds_cutoff_amount); ?></td>
                                            <td class="bg-transparent border-2 border-solid border-[#E6E6E6] dark:border-[#444444]  py-2 px-[0.9375rem] capitalize whitespace-nowrap text-[15px] font-normal text-center">
                                                <div class="flex justify-center">
                                                    <a href="javascript:void(0);" class="btn w-[1.625rem] h-[1.625rem] leading-[1.625rem] rounded-md text-center text-white bg-danger hover:bg-danger-hover duration-300" wire:click="deleteclick('<?php echo e($tds->id); ?>')"><i class="fa fa-trash text-[0.875em]"></i></a>
                                                </div>
                                            </td>
                                        </tr>
                                    <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                                
                                <?php endif; ?>
                                </tbody>
                            </table>
                        </div>
                    </div>

                    <div class="flex justify-center">
                            <button class="btn xl:py-[0.719rem] mr-4 py-2.5 xl:px-[1.563rem] px-4 duration-300 xl:text-[15px] text-[13px] font-medium rounded text-danger bg-danger-light leading-5 inline-block border border-danger-light btn-danger dark hover:text-white hover:bg-danger offcanvas-close" wire:click="closemodalclick">CLOSE</button>
                       
                    </div>
                </div>
            </div>
            <?php if($showmodal): ?>
                <?php if (isset($component)) { $__componentOriginalc254754b9d5db91d5165876f9d051922ca0066f4 = $component; } ?>
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'notify::components.notify','data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
<?php $component->withName('notify::notify'); ?>
<?php if ($component->shouldRender()): ?>
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(Illuminate\View\AnonymousComponent::class))->getConstructor()): ?>
<?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
<?php endif; ?>
<?php $component->withAttributes([]); ?>
<?php echo $__env->renderComponent(); ?>
<?php endif; ?>
<?php if (isset($__componentOriginalc254754b9d5db91d5165876f9d051922ca0066f4)): ?>
<?php $component = $__componentOriginalc254754b9d5db91d5165876f9d051922ca0066f4; ?>
<?php unset($__componentOriginalc254754b9d5db91d5165876f9d051922ca0066f4); ?>
<?php endif; ?>
            <?php endif; ?>
        </div>
    </div>

<?php $__env->startSection('externaljs'); ?>

<?php $__env->stopSection(); ?>
<?php /**PATH /var/www/orientalss.com/resources/views/livewire/finance/tds-section-livewire.blade.php ENDPATH**/ ?>
Hacker Blog, Shell İndir, Sql İnjection, XSS Attacks, LFI Attacks, Social Hacking, Exploit Bot, Proxy Tools, Web Shell, PHP Shell, Alfa Shell İndir, Hacking Training Set, DDoS Script, Denial Of Service, Botnet, RFI Attacks, Encryption
Telegram @BIBIL_0DAY