@extends('layouts.master')
@section('title', __('Sales Order') .' '. __('Information'))
@section('css')
@endsection
@section('content')
| No | {{__('Sales Order Number')}} | {{__('Document Date')}} | {{__('Customer Code')}} | {{__('Customer')}} | Salesman | Total | Status | Action |
|---|---|---|---|---|---|---|---|---|
| {{$loop->iteration}} | {{ $generals->sales_order_number }} | {{ \Carbon\Carbon::parse($generals->document_date)->format('d M Y') }} | {{$generals->customer_code}} | {{$generals->customers->customer_name}} | {{$generals->salesmans?$generals->salesmans->salesman_name:''}} | Rp {{number_format($generals->total,0,'.',',')}} | {{ ucfirst($generals->status) }} | |
| No | {{__('Sales Order Number')}} | {{__('Document Date')}} | {{__('Customer Code')}} | {{__('Customer')}} | Salesman | Total | Status | Action |