@extends('master') @section('content') {{ __('Generate Payslip') }} @csrf {{ __('Select Employee Category') }} @foreach ($categories as $category) {{ $category->category_name }} @endforeach {{ csrf_field() }} @foreach ($bankAccounts as $account) {{ $account->bank->bank_name }} ({{ $account->branch->branch_name }}) A/C - {{ $account->account_no }} ({{ $account->account_name }}) @endforeach {{ __('BULK PAYMENT') }} {{ __('Payment Info') }} # {{ trans('Name') }} {{ __('Payslip Type') }} {{ __('Basic Salary') }} {{ __('Net Salary') }} {{ trans('Status') }} {{ trans('action') }} @include('hr.salary.pay_list.includes.view_details') @include('hr.salary.pay_list.includes.payslip_generate_info_show') @endsection @section('page_script') @endsection