@extends('layouts.master') @section('title') {{__('sidebar.employee')}} @endsection @section('css') @endsection @section('body') @endsection @section('content') @component('components.breadcrumb') @slot('page_title') {{__('sidebar.employee')}} @endslot @slot('subtitle') {{__('sidebar.emp_money_view')}} @endslot @endcomponent
@foreach ($employee_money as $item) @if ($item->operation == 'borrow') @else @endif @endforeach
{{__('genral.name')}} {{__('genral.code')}} {{__('genral.opertion_name')}} {{__('genral.opertion_date')}} {{__('genral.value')}}
{{$item->employee->name}} {{$item->employee->emp_idnumber}} {{__('genral.'.$item->operation)}} {{\Carbon\Carbon::parse($item->operation_date)->format('Y-m-d')}}{{$item->month_dedcution}}{{$item->value}}
@endsection @section('scripts') @endsection