@extends('layouts.admin') @section('title', 'Category List') @section('content-header', 'Category List') @section('content-actions') Add Category @endsection @section('content')
@csrf
@foreach ($categories as $category) @foreach ($departments as $key => $value) @if($category->department_id == $key) @endif @endforeach @endforeach
Branch ID Department Category Name Description Status Action
{{$category->BID}}{{$value}}{{$category->category_name}} {{$category->description}} {{$category->status ? 'Active' : 'Inactive'}}
@endsection @section('js') @endsection