PATH:
home
/
lab2454c
/
.trash
/
core
/
resources
/
views
/
templates
/
basic
/
user
/
showcase
@extends('templates.basic.layouts.frontend') @section('content') <section class="dashboard-section pt-60 pb-60"> <div class="container"> <div class="pt-60 pb-60"> <div class="row"> <div class="col-xl-3"> @include('templates.basic.partials.sidebar') </div> <div class="col-xl-9"> <div class="mb-4 d-xl-none text-end"> <div class="sidebar__init"> <i class="las la-columns"></i> </div> </div> <a href="{{route('user.showcase.create')}}" class="btn btn-primary btn-sm mb-3 btn__global" style="float: right;"> <i class="las la-plus"></i> Add New Showcase </a> <div class="row"> @forelse($showcases as $showcase) <div class="col-md-4 mr__top"> <div class="card" > @if(isset($showcase->file)) <video width="240" height="240" controls class="card-img-top"> <source src="{{ asset('assets/files/showcase/'.$showcase->file) }}" type="video/mp4"> Your browser does not support the video tag. </video> @endif <div class="card-body"> <h5 class="card-title"> {{isset($showcase) ? $showcase->name : '-'}} </h5> <br> <form action="{{route('user.showcase.destroy', $showcase)}}" method="POST" > @csrf @method('DELETE') <button type="submit" class="btn btn-sm btn-danger btn__global" onclick="return confirm('Are you sure?')"> <i class="las la-trash-alt"></i> @lang('Remove Showcase') </button> </form> </div> </div> </div> @empty <p>No Showcase Added</p> @endforelse </div> </div> </div> </div> <!--<table class="table cmn--table">--> <!-- <thead>--> <!-- <tr>--> <!-- <th>@lang('Title')</th>--> <!-- <th>@lang('File')</th>--> <!-- <th>@lang('Action')</th>--> <!-- </tr>--> <!-- </thead>--> <!-- <tbody>--> <!-- @forelse($showcases as $showcase)--> <!-- <tr>--> <!-- <td data-label="@lang('Title')">{{str_limit($showcase->name, 20)}}</td>--> <!-- <td>--> <!-- @if(isset($showcase->file))--> <!-- <video width="240" height="240" controls>--> <!-- <source src="{{ asset('assets/files/showcase/'.$showcase->file) }}" type="video/mp4">--> <!-- Your browser does not support the video tag.--> <!-- </video>--> <!-- @endif--> <!-- </td>--> <!-- <td data-label="@lang('Action')">--> <!-- <form action="{{route('user.showcase.destroy', $showcase)}}" --> <!-- method="POST" --> <!-- >--> <!-- @csrf--> <!-- @method('DELETE')--> <!-- <button type="submit" --> <!-- class="btn btn--danger" onclick="return confirm('Are you sure?')">--> <!-- <i class="las la-trash"></i>@lang('Remove')--> <!-- </button>--> <!-- </form>--> <!-- </td>--> <!-- </tr>--> <!-- @empty--> <!-- <tr>--> <!-- <td colspan="100%" class="text-center">No Showcase Video Uploaded Yet</td>--> <!-- </tr>--> <!-- @endforelse--> <!-- </tbody>--> <!--</table>--> {{$showcases->links()}} </div> </div> </div> </div> </section> @endsection
[-] form.blade.php
[edit]
[-] create.blade.php
[edit]
[+]
..
[-] index.blade.php
[edit]