Untitled
unknown
plain_text
2 years ago
2.6 kB
5
Indexable
<div class="container mt-5"> <div class="card"> <div class="card-body"> <header> <h3>Add Carousel</h3> </header> <hr style="margin: 1rem -1rem;" /> <form action="/cms/content/carousel/create" method="post" enctype="multipart/form-data"> @csrf <div class="mb-3"> <label for="link" class="form-label">Link</label> <input type="text" class="form-control" name="link"> </div> <div class="mb-3"> <label for="imagefile" class="form-label">File</label> <input type="file" class="form-control" name="imagefile"> </div> <div class="mb-3 footer text-end"> <button type="submit" class="btn btn-primary">Create</button> </div> </form> </div> </div> <div class="card"> <div class="card-body"> <header> <h3>Carousel</h3> </header> <hr style="margin: 1rem -1rem;" /> <div class="table-responsive"> <table class="table" id="table-Carousel"> <thead> <tr> <th>No.</th> <th class="text-center">Link</th> <th class="text-center">Image</th> <th class="text-center">Action</th> </tr> </thead> <tbody> @foreach ($data as $item) <tr id = "{{$item->id}}"> <td>{{$loop->index+1}}</td> <td>{{$item->direct_link}}</td> <td><img src="{{$item->url_image}}" alt="" class="w-100 h-100"></td> <td class="text-center"><i class="fas fa-exclamation-circle btn btn-sm btn-primary carouselDetail"></i> <i class="fas btn btn-sm btn-danger fa-trash carouselDelete"></i></td> </tr> @endforeach </tbody> </table> </div> </div> </div> </div>
Editor is loading...
Leave a Comment