@extends('layouts.app') @section('title', 'References - ISP ERP System') @section('page-title', 'References Management') @section('content')

References Management

Manage reference contacts and information

All References
@if(session('success')) @endif
@forelse($references as $reference) @empty @endforelse
Name Type Phone Email Status Created By Created At Actions
{{ substr($reference->name, 0, 1) }}
{{ $reference->name }} @if($reference->description)
{{ Str::limit($reference->description, 50) }} @endif
{{ ucfirst($reference->type) }} {{ $reference->phone ?: '-' }} {{ $reference->email ?: '-' }} {{ $reference->is_active ? 'Active' : 'Inactive' }} {{ $reference->creator->name ?? 'System' }} {{ $reference->created_at->format('M d, Y') }}
@csrf @method('DELETE')

No references found. Create your first reference

@if($references->hasPages())
{{ $references->links() }}
@endif
@endsection @section('styles') @endsection @section('scripts') @endsection