| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- @extends('admin.layout.master')
- @section('main_content')
- @include('admin.layout.nav')
- @include('admin.layout.sidebar')
- <div class="main-content">
- <section class="section">
- <div class="section-header justify-content-between">
- <h1>Videos of {{ $destination->name }}</h1>
- <div class="ml-auto">
- <a href="{{ route('admin_destination_index') }}" class="btn btn-primary"><i class="fas fa-plus"></i> back to previous</a>
- </div>
- </div>
- <div class="section-body">
- <div class="row">
- <div class="col-md-7">
- <div class="card">
- <div class="card-body">
- <div class="table-responsive">
- <table class="table table-bordered">
- <thead>
- <tr>
- <th>SL</th>
- <th>Video</th>
- <th>Action</th>
- </tr>
- </thead>
- <tbody>
- @foreach($destination_videos as $item)
- <tr>
- <td>{{ $loop->iteration }}</td>
- <td>
- <iframe class="iframe1" width="560" height="315" src="https://www.youtube.com/embed/{{ $item->video }}" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
- </td>
- <td>
- <a href="{{ route('admin_destination_video_delete',$item->id) }}" class="btn btn-danger btn-sm" onClick="return confirm('Are you sure?')">Delete</a>
- </td>
- </tr>
- @endforeach
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- <div class="col-md-5">
- <div class="card">
- <div class="card-body">
- <form action="{{ route('admin_destination_video_submit',$destination->id) }}" method="post">
- @csrf
- <div class="mb-3">
- <label class="form-label">Video *</label>
- <input type="text" name="video" class="form-control">
- </div>
- <div class="mb-3">
- <label class="form-label"></label>
- <button type="submit" class="btn btn-primary">Submit</button>
- </div>
- </form>
- </div>
- </div>
- </div>
- </div>
- </div>
- </section>
- </div>
- @endsection
|