@extends('app') @section('title', 'Dashboard') @section('content_header')

Doctor Commission Test List

@stop @section('content')

Name : {{$doctor->name}}

Code : {{$doctor->id}}

Address : {{$doctor->address}}

{{csrf_field()}}
@if($doctor->hasRole('depot-dealer')) @endif @if(count($tests) > 0) @foreach($tests as $key => $test) @if($doctor->hasRole('depot-dealer')) @endif @endforeach @endif
S/N Product Name Product Code Product CategoryOpening StockProduct Price Base Deduction Other Deduction[HO] Other Deduction[Depot] Product Net Price[HO] Product Net Price[Depot]
{{$sn++}} {{$test->product_name}} {{$test->product_code}} {{$test->product_category}} {{$test->product_price}} {{$test->base_deduction}} {{$test->product_price - ($test->base_deduction + $test->other_deduction)}} {{$test->product_price - ($test->base_deduction + $test->other_deduction1)}}
@stop @section('css') {{ Html::style('assets/bower_components/datatables.net-bs/css/dataTables.bootstrap.min.css') }} {{ Html::style('css/responsive.dataTables.min.css') }} @stop @section('js') {{ Html::script('assets/bower_components/datatables.net/js/jquery.dataTables.min.js') }} {{ Html::script('assets/bower_components/datatables.net-bs/js/dataTables.bootstrap.min.js') }} {{ Html::script('js/dataTables.responsive.min.js') }} @stop