관리-도구
편집 파일: index.blade.php
@extends('layouts.app') @section('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="{{ url('/admin') }}">Home</a></li> <li class="breadcrumb-item active">Gig Listing</li> </ol> <a href="{{ 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> @foreach ($gigs as $gig) <tr> <td><img src="{{ asset('storage/app/' . $gig->image) }}" width="100" alt="Gig Image"></td> <td><p class="ct_job_discriptas" ><p>Link: <a href="{{ $gig->link }}" target="_blank">{{ $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"> {{ _lang('Action') }} <i class="fas fa-angle-down"></i> </button> <div class="dropdown-menu" aria-labelledby="dropdownMenuButton"> <form action="{{ route('gig.destroy', $gig->id) }}" method="POST"> @csrf @method('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> @endforeach </tbody> </table> </div> </div> </div> </div> </div> </div> </div> @endsection