@extends('layouts.app') @section('title','Declare Dividend') @section('page-title','Dividend Management') @section('content')
Back
Declare Annual Dividend
Based on Board resolution — creates a draft for review before distribution
@csrf
Financial Year & Profit
Format: YYYY-YYYY
@error('financial_year')
{{ $message }}
@enderror
$
@error('total_profit_usd')
{{ $message }}
@enderror
$
Amount to distribute to shareholders
@error('dividend_pool_usd')
{{ $message }}
@enderror
%
Pool ÷ Total profit
Board Resolution
@error('board_resolution')
{{ $message }}
@enderror
This creates a Draft declaration. It must be Approved by a second admin before dividends are distributed to members.
Cancel
{{-- Live Preview --}}
Distribution Preview
Eligible Shareholders {{ $shareholdersCount }}
Total Shares Eligible {{ number_format($totalShares) }}
Price per Share ${{ number_format($pricePerShare,2) }}

Dividend per Share (USD)
Dividend per Share (LRD)
Pool in LRD
Exchange rate: L${{ number_format($rate,2) }}=US$1
{{-- Top shareholders preview --}}
Top Shareholder Estimates
@foreach(\App\Models\Share::with('member')->orderByDesc('total_shares')->take(5)->get() as $s) @endforeach
MemberSharesEst. Dividend
{{ $s->member->name }} {{ $s->total_shares }}
@push('scripts') @endpush @endsection