65 lines
2.9 KiB
PHP
65 lines
2.9 KiB
PHP
@extends('backend.layouts.app')
|
|
|
|
@section('content')
|
|
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h5 class="mb-0 h6">{{translate('Conversations')}}</h5>
|
|
</div>
|
|
<div class="card-body">
|
|
<table class="table aiz-table mb-0" cellspacing="0" width="100%">
|
|
<thead>
|
|
<tr>
|
|
<th data-breakpoints="lg">#</th>
|
|
<th data-breakpoints="lg">{{ translate('Date') }}</th>
|
|
<th data-breakpoints="lg">{{translate('Title')}}</th>
|
|
<th>{{translate('Sender')}}</th>
|
|
<th>{{translate('Receiver')}}</th>
|
|
<th width="10%" class="text-right">{{translate('Options')}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach ($conversations as $key => $conversation)
|
|
<tr>
|
|
<td>{{$key+1}}</td>
|
|
<td>{{ $conversation->created_at }}</td>
|
|
<td>{{ $conversation->title }}</td>
|
|
<td>
|
|
@if ($conversation->sender != null)
|
|
{{ $conversation->sender->name }}
|
|
@if ($conversation->receiver_viewed == 0)
|
|
<span class="badge badge-inline badge-info">{{ translate('New') }}</span>
|
|
@endif
|
|
@endif
|
|
</td>
|
|
<td>
|
|
@if ($conversation->receiver != null)
|
|
{{ $conversation->receiver->name }}
|
|
@if ($conversation->sender_viewed == 0)
|
|
<span class="badge badge-inline badge-info">{{ translate('New') }}</span>
|
|
@endif
|
|
@endif
|
|
</td>
|
|
<td class="text-right">
|
|
<a class="btn btn-soft-primary btn-icon btn-circle btn-sm" href="{{route('conversations.admin_show', encrypt($conversation->id))}}" title="{{ translate('View') }}">
|
|
<i class="las la-eye"></i>
|
|
</a>
|
|
@can('delete_product_conversations')
|
|
<a href="#" class="btn btn-soft-danger btn-icon btn-circle btn-sm confirm-delete" data-href="{{route('conversations.destroy', encrypt($conversation->id))}}" title="{{ translate('Delete') }}">
|
|
<i class="las la-trash"></i>
|
|
</a>
|
|
@endcan
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
@endsection
|
|
|
|
@section('modal')
|
|
@include('modals.delete_modal')
|
|
@endsection
|