@extends('layouts.app') @section('title') Add Vendor @stop @section('breadcrumb') @stop @section('content')

Vendor Details


Name
{{ucfirst($data['vendor']->name)}}
Email
{{ucfirst($data['vendor']->email)}}
Phone
0{{ucfirst($data['vendor']->phone_number)}}
CNIC
{{ucfirst($data['vendor']->cnic)}}
NTN
{{$data['vendor']->ntn}}
STRN
{{$data['vendor']->stn}}
Address {{ucfirst($data['vendor']->address)}}

Purchase Orders

Sent {{ $data['sent_po'] }} view
Received {{$data['receive_po']}} view
Partial Received {{$data['partial_receive_po']}} view

Receipts

Paid {{$data['paid_receipt'] }} view
Unpaid {{ $data['unpaid_receipt']}} view
Partial Paid {{ $data['partialy_paid_receipt'] }} view
@if(Session::has('success')) @endif

Items List

@foreach( $data['vendor']->items as $list ) @endforeach
Category Item code Items name Unit Action
{{ $list->category->category_name}} {{$list->item_code}} {{$list->item_name}} {{$list->unit}} View Details
@stop @section('js') @stop