@extends('layouts.dashboard') @section('content')

Branch HRs

@if (Session::has('message'))
@endif
{{--

Fixed Header Table

--}}
@forelse ($branch_hrs as $branch_hr ) @empty @endforelse
Sr No. Name Email Mobile Number Status Action
{{ $loop->iteration }} {{ $branch_hr->name }} {{ $branch_hr->email }} {{ $branch_hr->mobile_number }} {{ ($branch_hr->status == 1)?"Active":"Inactive" }}
No data available
@endsection