@extends('layouts.app') @section('content')
@foreach($orders as $order) @endforeach
Invoice Number Branch Sales category Status Total Actions
{{$order -> branch}} {{$order -> category}} {!! $order -> status == 0 ? '' . "Processing" . '' : '' . "Completed" . '' !!} GH₵{{$order -> total_cost_order}}
{{$orders->links()}}
@endsection