@extends('layouts.app') @section('title', $app_setting['name'] . ' | Category List') @section('content')
@foreach ($categories as $category) @endforeach
# Category Title Featured Color Status Action
{{ $loop->iteration }}

{{ $category->title }}

@if ($category->is_featured) Yes @else No @endif   {{ $category->color }} @if ($category->trashed())
Deleted
@else
Active
@endif
@if ($category->trashed()) @else @endif
@endsection