diff --git a/app/Http/Controllers/Portal/Profile.php b/app/Http/Controllers/Portal/Profile.php index 4228a55d7..0596f876c 100644 --- a/app/Http/Controllers/Portal/Profile.php +++ b/app/Http/Controllers/Portal/Profile.php @@ -4,7 +4,6 @@ namespace App\Http\Controllers\Portal; use App\Abstracts\Http\Controller; use App\Http\Requests\Portal\Profile as Request; -use App\Models\Auth\User; use App\Traits\Uploads; class Profile extends Controller diff --git a/public/css/akaunting-color.css b/public/css/akaunting-color.css index 6d2fd188d..dc357c6fb 100644 --- a/public/css/akaunting-color.css +++ b/public/css/akaunting-color.css @@ -2345,7 +2345,15 @@ option:focus /*--------General Progress Bar Color Finish--------*/ -/*------------------------*/ +/*--------List Group Item Active-------*/ +.list-group-item.active +{ + z-index: 2; + color: #ffffff; + background-color: #3c3f72 !important; + border-color: #3c3f72 !important; +} +/*--------List Group Item Active Finish-------*/ /*--Create Category Button Color--*/ diff --git a/public/css/custom.css b/public/css/custom.css index a3630fd9a..38c2dabd6 100644 --- a/public/css/custom.css +++ b/public/css/custom.css @@ -188,7 +188,7 @@ button:focus { max-width: 1116px !important; } -/*--------Content Width- Finish-------*/ +/*--------Content Width Finish-------*/ /*--------Navbar Notification--------*/ @@ -690,6 +690,15 @@ table .align-items-center td span.badge { /*--------Print Template Finish--------*/ +/*--------Font Size 50--------*/ +.font-size-50 +{ + font-size: 50px !important; +} +/*--------Font Size 50 Finish--------*/ + + + /*----------------RESPONSIVE START LINE----------------*/ /*--------Xs Breakpoint--------*/ @media (min-width: 304px) and (max-width: 575.98px) diff --git a/resources/views/portal/payments/show.blade.php b/resources/views/portal/payments/show.blade.php index edd3b6d03..41be6d6ea 100644 --- a/resources/views/portal/payments/show.blade.php +++ b/resources/views/portal/payments/show.blade.php @@ -11,110 +11,136 @@
-
- - - +
+
  • + {{ trans('general.from') }}: {{ setting('company.name') }} +
  • +
  • {{ trans('general.address') }}: {{ setting('company.address') }}
  • +
  • {{ trans('general.phone') }}: {{ setting('company.phone') }}
  • +
  • {{ trans('general.email') }}: {{ setting('company.email') }}
  • +
    +
    +
  • + {{ trans('general.to') }}: {{ $payment->contact->name }} +
  • +
  • {{ trans('general.address') }}: {{ $payment->contact->address }}
  • +
  • {{ trans('general.phone') }}: {{ $payment->contact->phone }}
  • +
  • {{ trans('general.email') }}: {{ $payment->contact->email }}
  • +
    +
    + +
    + @if ($payment->description) +

    {{ trans('general.description') }}

    +

    {{ $payment->description }}

    + @endif +
    +
    -
    - {{ trans('general.to') }}: {{ $payment->contact->name }} +
    +
    +
    +

    {{ trans_choice('general.payments', 1) }}

    +
    +
    - -
    - {{ trans('general.address') }}: - {{ $payment->contact->address }} - - - {{ trans('general.phone') }}: - {{ $payment->contact->phone }} - - - {{ trans('general.email') }}: - {{ $payment->contact->email }} +
    + + + + + + + + + + + + + + + +
    {{ trans('general.amount') }}{{ trans_choice('general.payment_methods', 1) }}{{ trans('general.description') }}
    @money($payment->amount, $payment->currency_code, true){{ $payment_methods[$payment->payment_method] }}{{ $payment->description }}
    - - @if ($payment->description) -
    -
    -

    {{ trans('general.description') }}:

    - -

    {{ $payment->description }}

    -
    -
    - @endif -
    - -
    - - - - - - - - - - - - - - - -
    {{ trans('general.amount') }}{{ trans_choice('general.payment_methods', 1) }}{{ trans('general.description') }}
    @money($payment->amount, $payment->currency_code, true){{ $payment_methods[$payment->payment_method] }}{{ $payment->description }}
    @if ($payment->attachment) - +
    @endif
    @endsection @push('scripts_start') - + @endpush