@extends('admin.master') @section('content') @section('title','Allowance List')
@yield('title')
@if(session()->has('success'))
 {{ session()->get('success') }}
@endif @if(session()->has('error'))
 {{ session()->get('error') }}
@endif
{!! $sl=null !!} @foreach($results AS $value) @endforeach
S/L Allowance Name Allowance Type Percentage Of Tax Limit Per Month Action
{!! ++$sl !!} {!! $value->allowance_name !!} {!! $value->allowance_type !!} @if ($value->allowance_type == 'Percentage') {!! $value->percentage_of_basic !!}% @endif {!! $value->limit_per_month !!}
@endsection