@extends("layouts.dashboard")
@section("title", "Categories - Dashboard | TechnoBlog")
@section("dashboard_content")
Name |
Color |
Status |
Created Date |
Actions |
@foreach ($categories as $category)
{{ $category->name }} |
|
@if ($category->is_active)
Active
@else
Blocked
@endif
|
{{ date('d.m.Y', strtotime($category->created_at)) }} |
|
@endforeach
@endsection