@extends('layouts/contentLayoutMaster') @section('title', 'Salary Calculation') @section('vendor-style') {{-- vendor css files --}} @endsection @section('content') @if ($errors->any()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif @if ($message = Session::get('success')) {{ $message }} @endif Employee Salary Calculation {{-- Select Category Please Select Category Vendors Price Type --}} @csrf Select All Employees Employees Please Select Employee @foreach ($employees as $employee) {{ $employee->name }} {{ $employee->code }} @endforeach Calculate Salary Payroll Process Code From To Created At Status Action @endsection @section('vendor-script') {{-- vendor files table data --}} @endsection @section('page-script') @endsection