@extends('layouts.app') @section('title', 'Communities') @section('content')
@if($cacs->count() > 0)
All of your communities are listed below. Click on the community you wish to view for more information.
@foreach($cacs as $cac)
{{ $cac->title }}
{{ $cac->title }}

{{ \Illuminate\Support\Str::substr($cac->about, 0, 200) }}

@endforeach
@else
You do not have any communities yet. Why not register one and get started making the world a better place?
@endif
@endsection