@extends('layouts.dashboard.dashboard') @push('css') @endpush @push('js') @endpush @section('content') @component('card-component',['title'=>'orders']) @component('components.data-table',['tableID'=>"tableorder"]) @slot('thead') @lang('main.id') @lang('main.name') @lang('main.email') @lang('main.tattoo') @lang('main.message') @lang('main.status') @endslot @slot('tbody') @foreach ($orders as $order) {{$order->id}} {{$order->name}} {{$order->email}} {{$order->tattoo->name}} {{$order->message}} @if (!$order->is_read)
@csrf
@else @endif @endforeach @endslot @endcomponent @endcomponent @stop