@extends('admin.master') @section('title', __('Transaction notes')) @section('content') @if(session('response'))
{{ session('response') }}
@endif
@foreach($notes as $note) @endforeach
{{ __('Reference ID') }} {{ __('Buyer') }} {{ __('Created at') }} {{ __('Updated at') }} {{ __('Content') }} {{ __('Reply') }}
{{ $note->reference_id }} {{ $note->email }} {{ $note->created_at }} {{ $note->updated_at }} {{ __('Read') }} {{ __('Reply') }}
@if($notes->hasPages())
{{ $notes->appends($base_uri)->onEachSide(1)->links() }} {{ $notes->appends($base_uri)->links('vendor.pagination.simple-semantic-ui') }} @endif
@endsection