@extends('home.partial.layout') @section('content')

Payment Deduction Type

@if ($edit_masters)
{{ method_field('PUT') }} @else @endif @csrf

{{$edit_masters ? 'Edit' : 'Create'}}

@if ($edit_masters) @endif
@if (session()->has('success'))
{{ session('success') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@forelse ($masters_data as $payment_deduction_type) @empty @endforelse
Payment Deduction Type Description Status Action

{{$payment_deduction_type->name}}

{{$payment_deduction_type->description}} {{getStatus($payment_deduction_type->active)}}
There are no records to display!
@forelse ($masters_data as $payment_deduction_type) @empty @endforelse
@endsection