@extends('admin.layout.master') @section('content')
| # | {{ __('obs.title') }} | {{ __('obs.department') }} | {{ __('obs.designation') }} | {{ __('obs.status') }} | {{ __('obs.action') }} |
|---|---|---|---|---|---|
| {{ $i++ }} | {{ $item->title }} | {{ $item->getDepartment->name ?? '' }} | @foreach ($item->designations as $desigation) {{ $desigation->name }} @endforeach | @if ($item->status == 1) {{ __('obs.active') }} @else {{ __('obs.inactive') }} @endif | Edit Details |