@php use App\Models\Setting; $companyName = Setting::get('company_name', config('app.name')); $companyAddress = Setting::get('company_address', ''); $phone1 = Setting::get('phone_one') ?: Setting::get('phone1') ?: Setting::get('phone'); $phone2 = Setting::get('phone_two') ?: Setting::get('phone2') ?: ''; $email = Setting::get('email') ?: Setting::get('mail'); // Load logo from public/images using stored filename $logoFilename = Setting::get('logo') ?: Setting::get('company_logo') ?: Setting::get('site_logo'); $logoUrl = $logoFilename ? asset('images/' . ltrim($logoFilename, '/')) : ''; @endphp
| Description | Value |
|---|---|
| Investment Amount | {{ number_format($invest->amount, 2) }} |
| Percent per month | {{ $invest->percent }}% |
| Duration | {{ $invest->months }} months |
| Invest Date | {{ $invest->invest_date }} |