@extends('layouts.app') @section('content') Order History @include('user.include.sidebar') SNo. Name Invoice Number Total View Invoice @foreach ($order as $key => $items) {{ $key + 1 }} {{ ucwords($items->name) }} {{ $items->invoice }} ${{ $items->amount }} View @endforeach @endsection @push('css') @endpush @push('js') @endpush