@extends('components.admin-layout') @section('content')

All Investment Categories

{{--
--}}
Name
Description
Created At
{{--
Status
--}}
Action
{{--
Action
--}}
@foreach ($cats as $cat)
{{ ucwords($cat->name) }}
{{ \Illuminate\Support\Str::limit($cat->description, 70, $end='...') }}
{{ date('d M,Y', strtotime($cat->createdAt)) }}
{{-- modal --}}
@endforeach
@if ($cats->count() < 1) @endif
{{--
{{ $users->links() }}
--}}
{{ $cats->links() }}
@endsection