74 lines
3.3 KiB
PHP
74 lines
3.3 KiB
PHP
@extends('layouts.admin')
|
|
|
|
@section('content')
|
|
<div class="container">
|
|
<div class="card shadow mb-4">
|
|
<div class="card-header py-3 d-flex">
|
|
<h6 class="m-0 font-weight-bold text-primary">
|
|
{{ __('Reviews') }}
|
|
</h6>
|
|
</div>
|
|
<div class="table-responsive">
|
|
<table class="table table-hover table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>No</th>
|
|
<th>Name</th>
|
|
<th>Content</th>
|
|
<th>Rating</th>
|
|
<th>Product</th>
|
|
<th>Status</th>
|
|
<th>Created at</th>
|
|
<th class="text-center" style="width: 30px;">Action</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@forelse($reviews as $review)
|
|
<tr>
|
|
<td>{{ $loop->iteration }}</td>
|
|
<td>
|
|
<a href="{{ route('admin.reviews.show', $review->id) }}">
|
|
{{ $review->user_id ? $review->user->name : $review->name }}
|
|
</a><br>
|
|
<small>{{ $review->email }}</small><br>
|
|
</td>
|
|
<td>{{ $review->content }}</td>
|
|
<td><span class="badge badge-success">{{ $review->rating }}</span></td>
|
|
<td>{{ $review->product->name }}</td>
|
|
<td>{{ $review->status }}</td>
|
|
<td>{{ $review->created_at ? $review->created_at->format('Y-m-d') : '' }}</td>
|
|
<td>
|
|
<div class="btn-group btn-group-sm">
|
|
<a href="{{ route('admin.reviews.edit', $review) }}" class="btn btn-sm btn-primary">
|
|
<i class="fa fa-edit"></i>
|
|
</a>
|
|
<form onclick="return confirm('are you sure !')" action="{{ route('admin.reviews.destroy', $review) }}"
|
|
method="POST">
|
|
@csrf
|
|
@method('DELETE')
|
|
<button class="btn btn-sm btn-danger" type="submit"><i class="fa fa-trash"></i></button>
|
|
</form>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
@empty
|
|
<tr>
|
|
<td class="text-center" colspan="9">No reviews found.</td>
|
|
</tr>
|
|
@endforelse
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="9">
|
|
<div class="float-right">
|
|
{!! $reviews->appends(request()->all())->links() !!}
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|