@extends('admin.layouts.app') @section('title',get_setting('site_name').' | Staff Service length') @section('content')
Age/Service Length
@foreach($staffs as $staff) @endforeach
Employee Code Name Branch Designation Joining Date Service Length Work Anniversary
{{$staff->user_id}} {{!empty($staff->user)?$staff->user->name:'-'}} {{!empty($staff->warehouse)?$staff->warehouse->name:'-'}} {{!empty($staff->designation)?$staff->designation->name:'-'}}  {{$staff->joing_date}} {{services_length($staff->joing_date)}} {{__('After ')}}{{work_anniversary($staff->joing_date)}}{{__(' days')}}
@endsection