@extends('layouts.main') @section('page-style') @endsection @section('page-plugin') @endsection @section('page-script') @endsection @section('content')

@include('transaction::transactionFilter')
@include('layouts.notifications') @if (!empty($search))

Displaying search result :

{{ $count }}


Reset
@endif
List Transaction
{{-- --}} {{-- --}} @if(!empty($list)) @foreach($list as $res) {{-- --}} {{-- --}} @if (isset($res['name'])) @else @endif @if (isset($res['phone'])) @else @endif @endforeach @endif
Receipt NumberProduct NameProduct CategoryCustomer Name Phone Total Price Payment Status Actions
{{ $res['transaction_receipt_number'] }}{{ $res['product_name'] }}{{ $res['product_category_name'] }}{{ $res['name'] }}{{ $res['user']['name'] }}{{ $res['phone'] }}{{ $res['user']['phone'] }}Rp {{ number_format($res['transaction_grandtotal'], 2) }} {{ $res['transaction_payment_status'] }} Detail Delete
@endsection