@extends('layouts/nebula') @section('content')
@include('customer.nebula.header')
{{ __('Capped Income') }}

{{ number_format($user->available_salary, 2) }}

{{ __('Total Income') }}

{{ number_format($user->total_income_received, 2) }}

Auto Insurance

@csrf
auto_insurance ? 'checked' : '' }}>

@if (!empty($user->insurance_start))

{{ __('You have protection for :date for plays starting from :time', ['date' => \Carbon\Carbon::make($user->insurance_start)->format('d-m-Y'), 'time' => \Carbon\Carbon::make($user->insurance_start)->format('h:ia')]) }}

@else

{{ __('You do not have insurance protection today.') }}

@endif
@endsection