관리-도구
편집 파일: 213137fe522edaf746336d8a376d58a2a49588e7.php
<?php $__env->startSection('content'); ?> <div class="page-wrapper"> <div class="container-fluid"> <div class="row page-titles"> <div class="col-md-5 align-self-center"> <h4 class="text-themecolor"> </h4> </div> <div class="col-md-7 align-self-center text-end"> <div class="d-flex justify-content-end align-items-center"> <ol class="breadcrumb justify-content-end"> <li class="breadcrumb-item"><a href="<?php echo e(url('/admin')); ?>">Home</a></li> <li class="breadcrumb-item active">Gig Listing</li> </ol> <a href="<?php echo e(url('/gig_create')); ?>"> <i class="fa fa-plus-circle"></i> Create New</a> </div> </div> </div> <div class="row"> <!-- column --> <div class="col-12"> <div class="card"> <div class="card-body"> <h4 class="card-title"> Gig Listing </h4> <div class="table-responsive"> <table class="table"> <thead> <tr> <th>Gig</th> <th>Gig Link</th> <th class="text-center" style="width: 100px;">Action</th> </tr> </thead> <tbody> <?php $__currentLoopData = $gigs; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $gig): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><img src="<?php echo e(asset('storage/app/' . $gig->image)); ?>" width="100" alt="Gig Image"></td> <td><p class="ct_job_discriptas" ><p>Link: <a href="<?php echo e($gig->link); ?>" target="_blank"><?php echo e($gig->link); ?></a></p></td> <td class="text-center"> <div class="dropdown"> <button class="btn btn-light dropdown-toggle btn-xs" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <?php echo e(_lang('Action')); ?> <i class="fas fa-angle-down"></i> </button> <div class="dropdown-menu" aria-labelledby="dropdownMenuButton"> <form action="<?php echo e(route('gig.destroy', $gig->id)); ?>" method="POST"> <?php echo csrf_field(); ?> <?php echo method_field('DELETE'); ?> <button class="ct_btn_edit" type="submit" onclick="return confirm('Are you sure you want to delete this job post?')">Delete</button> </form> </div> </form> </div> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> </div> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/eraas/public_html/resources/views/backend/gigs/index.blade.php ENDPATH**/ ?>