@extends('layouts.dashboard.dashboard') @push('css') @endpush @push('js') @endpush @section('content') @component('card-component',['title'=>ucfirst(trans('main.testimonials'))]) @component('components.data-table',['tableID'=>"tabletestimonial"]) @slot('thead') @lang('main.id') @lang('main.name') @lang('main.title') @lang('main.edit') @lang('main.delete') @endslot @slot('tbody') @foreach ($testimonials as $testimonial) {{$testimonial->id}} {{$testimonial->name}} {{$testimonial->title}} @lang('main.edit')
@csrf @method('DELETE')
@endforeach @endslot @endcomponent @endcomponent @stop