@include('includes.user.sidebar')
@lang('Dispute')
| {{ __('Subject') }} |
{{ __('Message') }} |
{{ __('Time') }} |
{{ __('Actions') }} |
@forelse ($convs as $conv)
| {{ $conv->subject }} |
{{ $conv->message }} |
{{ $conv->created_at->diffForHumans() }}
|
|
@empty
| {{ __('No Dispute Found.') }} |
@endforelse
{{ $convs->links('includes.frontend.pagination') }}