@extends('layouts.acc_layout') @section('Auto Voucher Settings', '| '. $pageTitle) @section('stylesheets') @endsection @section('content')
@include('hr_partials._message')
{{ $pageTitle }}
{{-- Table --}}
@foreach($mAutoVoucherTypeSetting->all() as $item) @endforeach
#SL Project Project Type Staff Type Voucher Type Action
{{ ++$loop->index }} {{ $mProject->find($item->project_id_fk)->name ?? '' }} {{ $mProjectType->find($item->project_type_id_fk)->name ?? '' }} {{ $mStaffType->find($item->hr_staff_types_id_fk)->name ?? '' }} {{ $mAddVoucherType->find($item->acc_voucher_type_id_fk)->name ?? '' }} {!! Form::open(['method' => 'post', 'url' => url('hr/autoVoucherTypeSettings/delete/'.$item->id), "onsubmit" => "return confirmDelete()",'style'=>'display: inline-block;']) !!} {!! Form::close() !!}
{{-- ./panel-body --}}
{{-- ./col-md-12 --}}
{{-- .row --}}
{{-- ./panel-body --}}
{{-- ./panel --}}
{{-- ./col-md-10 --}}
@endsection @section('script') @endsection