@extends('layouts.master') @section('title', 'POS List') @section('css') @endsection @section('content')
POS List
@foreach ($posList as $pos) @endforeach
POS Number Transaction Date Total Amount Action
{{ $pos->pos_number }} {{ \Carbon\Carbon::parse($pos->transaction_date)->format('d M Y') }} {{ $pos->total_amount }} visibility
POS Number Transaction Date Total Amount Action
@endsection @section('scripts') @endsection