@extends('layout.app') @section('title', __('drafts')) @section('content')
{{ __('drafts') }}
@foreach ($drafts as $draft) @endforeach
{{ __('sl') }} {{ __('date') }} {{ __('biller') }} {{ __('total_product') }} {{ __('total_discount') }} {{ __('total_tax') }} {{ __('total_price') }} {{ __('grand_total') }} {{ __('action') }}
{{ $loop->iteration }} {{ dateFormat($draft->created_at) }} {{ $draft->user->name }} {{ $draft->total_qty }} {{ numberFormat($draft->total_discount) }} {{ numberFormat($draft->total_tax) }} {{ numberFormat($draft->total_price) }} {{ numberFormat($draft->grand_total) }}
@endsection