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