@extends('layouts.dashboard') @section('title',trans('layout.billings')) @section('main-content')

{{trans('layout.billings')}}

{{trans('layout.billings')}}

@foreach($orders as $order) @endforeach
# {{trans('layout.name')}} {{trans('layout.restaurant')}}/{{trans('layout.table')}} {{trans('layout.amount')}} {{trans('layout.billing_status')}}
{{$order->id}} {{$order->name}} {{$order->restaurant->name .'(' .$order->table->name . ')'}} {{formatNumberWithCurrSymbol($order->total_price)}} @if($order->payment_status=='paid') @else @endif
@endsection @section('js') @endsection