@extends('layouts.app') @section('title', 'Divisions') @section('nav-items')
  • Divisions
  • Logos
  • Company Profile
  • @endsection @section('styles') @endsection @section('content')

    Our Divisions

    Discover our specialized business units and access exclusive branding materials tailored for each division

    @if($divisions->count() > 0)
    @foreach($divisions as $division)

    {{ $division->name }}

    {{ $division->files_count }} {{ Str::plural('file', $division->files_count) }}
    @if($division->description)

    {{ $division->description }}

    @endif
    @endforeach
    @else

    No divisions available

    Check back later for available divisions and resources.

    @endif @endsection