@extends('layouts.master') @section('title', 'Processing Modules - Prolex Law Firm') @section('content')

Processing Menu

Manage daily operations and case processing workflows

@php $modules = [ ['name' => 'Task Management', 'icon' => 'fas fa-tasks', 'route' => 'modules.processing.task-management', 'description' => 'Organize and track tasks, deadlines, and team assignments', 'color' => 'red'], ['name' => 'Court Filings', 'icon' => 'fas fa-file-alt', 'route' => 'modules.processing.court-filings', 'description' => 'Manage court document submissions and filing schedules', 'color' => 'blue'], ['name' => 'Client', 'icon' => 'fas fa-user', 'route' => 'modules.processing.client', 'description' => 'Process client information and case assignments', 'color' => 'green'], ['name' => 'Supplier Invoice', 'icon' => 'fas fa-file-signature', 'route' => 'modules.processing.supplier-invoice', 'description' => 'Handle vendor invoices and payment processing', 'color' => 'yellow'], ['name' => 'Cash Book', 'icon' => 'fas fa-book', 'route' => 'modules.processing.cash-book', 'description' => 'Record and manage cash transactions and receipts', 'color' => 'purple'], ['name' => 'Journal', 'icon' => 'fas fa-book-open', 'route' => 'modules.processing.journal', 'description' => 'Maintain accounting journals and financial entries', 'color' => 'pink'], ]; @endphp @foreach ($modules as $module)

{{ $module['name'] }}

{{ $module['description'] }}

Open Module
@endforeach
@endsection