@extends('app') @section('title', 'designations') @section('content')

Form Wizard

@if(Session::has('response')) {!!Session::get('response')['message']!!} @endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- designation basesalary sellary_type total_bonous status --}} @forelse ($designations as $designation) @empty @endforelse
Name Salary Sallary_type Total Bounus Status Action
{{$designation?->designation}} {{$designation?->sellary_type == 'per_item' ? $designation?->basesalary * 100 .'%' :$designation?->basesalary}} {{$designation?->sellary_type ? 'Per-Item' : $designation?->sellary_type}} {{$designation?->total_bonous}} @if($designation->status === 1) Active @else Deactive @endif
@csrf @method('delete')
{{__('No data founds!')}}
@endsection