@extends('layout.master', ['headerTitle' => 'Account Details']) @section('style') @endsection @section('body')
ID | {{$account->id}} |
---|---|
Name | {{ucwords($account->name)}} |
Parent Account | {{isset($account->parent->name) ? ucfirst($account->parent->name) : ''}} |
Deemed Positive | {{$account->deemed_positive==1 ? 'Yes' : 'No'}} |
Affects Gross Profit | {{$account->affects_gross_profit==1 ? 'Yes' : 'No'}} |
Sort Order | {{isset($account->sort_order) ? ucfirst($account->sort_order) : ''}} |
Default Dr Cr | {{isset($account->default_dr_cr) ? ucfirst($account->default_dr_cr) : ''}} |