@extends('panel::layouts.app') @section('body-class', '') @section('title', ('Sell Request')) @section('content')
@if ($sells->count())
@foreach($sells as $item) @endforeach
{{ __('panel/common.id') }} Product name Category Subcategory Variety/type Grade/Condition Quantity Product Description First Name Last Name Email Phone number Status Comment {{ __('panel/common.actions') }}
{{ $item->id }} {{ $item->product }} {{ $item->category }} {{ $item->subcategory }} {{ $item->variety }} {{ $item->grade }} {{ $item->quantity }} {{ $item->description }} {{ $item->name }} {{ $item->last_name }} {{ $item->email }} {{ $item->phone }} @if($item->status == 'approved') Approved @else Pending @endif {{ $item->comment ?? 'No comment' }} {{ __('panel/common.view') }} @if($item->status != 'approved') @endif
@else @endif
@endsection @push('footer') @endpush