@extends('layouts.app') @section('title', 'Categories - EDUC Pharmacy') @section('content')

Categories

@if (session('success')) @endif
@if ($categories->count() > 0)
@foreach ($categories as $category) @endforeach
ID Name Category Code Description Actions
{{ $category->id }} {{ $category->name }} @if ($category->category_code) {{ $category->category_code }} @else - @endif {{ Str::limit($category->description, 50) ?? '-' }} Edit
@csrf @method('DELETE')
{{ $categories->links() }}
@else

No categories found. Create one now!

@endif
@endsection