Viewing file: index.blade.php (4.02 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('general.index', $setup)
@section('cardbody') <div class="container-fluid"> <div class="row"> @foreach ($setup['items'] as $item) <div class="col-sm-12 col-md-6 col-lg-4 col-xl-4 mb-4 "> <br/> <a href="{{ route("admin.landing.testimonials.edit",["testimonial"=>$item->id]) }}"> <div class="card cardWithShadow cardWithShadowAnimated testimonialCard shadow" data-toggle="tooltip" data-placement="top" title="{{ __('Edit this testimonial')}}"> <div class="card-body"> <div class="testimonials-item-author"> <div class="testimonials-item-author-image-container"> <img class="avatar rounded-circle" src='{{ $item->image_link }}' class="testimonials-item-author-image"> </div> <div class="testimonials-item-author-info"> <div class="testimonials-item-author-info-name">{{ $item->title }}</div> <div class="testimonials-item-author-info-position"><span class="small">{{ $item->subtitle }}</span></div> </div> <div class="testimonials-item-stars"> <span class="testimonials-item-stars-item"> <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" width="14px" height="14px" viewBox="0 0 100 100"> <use xlink:href="#icon-star"> <svg viewBox="4 4 16 16" id="icon-star"> <path d="M11.567 17.36L8.063 19.2a.93.93 0 0 1-1.35-.98l.67-3.902a.93.93 0 0 0-.268-.823l-2.834-2.763a.93.93 0 0 1 .515-1.587l3.918-.569a.93.93 0 0 0 .7-.509l1.752-3.55a.93.93 0 0 1 1.668 0l1.752 3.55a.93.93 0 0 0 .7.51l3.917.568a.93.93 0 0 1 .516 1.587l-2.835 2.763a.93.93 0 0 0-.267.823l.67 3.902a.93.93 0 0 1-1.35.98l-3.504-1.842a.93.93 0 0 0-.866 0z"> </path> </svg> </use> </svg> </span> <span class="testimonials-item-stars-item"> <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" width="14px" height="14px" viewBox="0 0 100 100"> <use xlink:href="#icon-star"></use> </svg> </span> <span class="testimonials-item-stars-item"> <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" width="14px" height="14px" viewBox="0 0 100 100"> <use xlink:href="#icon-star"></use> </svg> </span> <span class="testimonials-item-stars-item"> <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" width="14px" height="14px" viewBox="0 0 100 100"> <use xlink:href="#icon-star"></use> </svg> </span> <span class="testimonials-item-stars-item"> <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" width="14px" height="14px" viewBox="0 0 100 100"> <use xlink:href="#icon-star"></use> </svg> </span> </div> </div>
<blockquote class="blockquote tetimonial_text"> <p class="mb-0"> {{ $item->description }} </p> </blockquote> </div> </div> </a> <br/> <div class="text-center"> <a href="{{ route("admin.landing.testimonials.delete",["testimonial"=>$item->id]) }}" class="btn btn-danger btn-sm">{{ __('Delete') }}</a> </div> </div> @endforeach </div> </div>
@endsection
|