@extends('layouts.app') @section('title', 'Opportunities') @section('page-title', 'Opportunities') @section('content')

Opportunities

New Opportunity
@forelse($opportunities as $opp) @empty @endforelse
Title Contact Value Stage Probability Actions
{{ $opp->title }} {{ $opp->contact->first_name }} {{ $opp->contact->last_name }} ${{ number_format($opp->value, 2) }} {{ $opp->stage }} {{ $opp->probability }}% View Edit
No opportunities found
{{ $opportunities->links() }}
@endsection