Merge branch 'master' of https://github.com/brkcvn/akaunting into mobile-index-actions
This commit is contained in:
commit
6d5f520c95
@ -91,7 +91,7 @@ abstract class Notification extends BaseNotification implements ShouldQueue
|
||||
|
||||
public function getFooter()
|
||||
{
|
||||
$url = 'https://akaunting.com/lp/accounting-software?utm_source=email&utm_medium=footer&utm_campaign=plg&utm_content=' . $this->template->alias;
|
||||
$url = 'https://akaunting.com/accounting-software?utm_source=email&utm_medium=footer&utm_campaign=plg&utm_content=' . $this->template->alias;
|
||||
|
||||
$get_started = '<a href="' . $url . '" style="color: #676ba2; text-decoration: none;">' . trans('footer.get_started') . '</a>';
|
||||
|
||||
|
@ -188,7 +188,11 @@ trait Recurring
|
||||
return false;
|
||||
}
|
||||
|
||||
return $schedule->current()->getStart();
|
||||
if (! $current = $schedule->current()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return $current->getStart();
|
||||
}
|
||||
|
||||
public function getNextRecurring()
|
||||
@ -210,7 +214,11 @@ trait Recurring
|
||||
return false;
|
||||
}
|
||||
|
||||
return $schedule->first()->getStart();
|
||||
if (! $first = $schedule->first()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return $first->getStart();
|
||||
}
|
||||
|
||||
public function getLastRecurring()
|
||||
@ -219,6 +227,10 @@ trait Recurring
|
||||
return false;
|
||||
}
|
||||
|
||||
return $schedule->last()->getStart();
|
||||
if (! $last = $schedule->last()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return $last->getStart();
|
||||
}
|
||||
}
|
||||
|
10
public/css/app.css
vendored
10
public/css/app.css
vendored
@ -1399,7 +1399,7 @@ input[type=file]::file-selector-button:hover{
|
||||
background-color: #DCE2F9;
|
||||
}
|
||||
|
||||
.menu-list a svg {
|
||||
.menu-list ul svg {
|
||||
width: 22px;
|
||||
height: 24px;
|
||||
fill: none;
|
||||
@ -54059,6 +54059,14 @@ html[dir="rtl"] .lines-radius-border thead td:last-child {
|
||||
}
|
||||
/* responsive for role mobile */
|
||||
|
||||
/* full-width for mobile. Some component use inline styling for width */
|
||||
@media only screen and (max-width: 991px) {
|
||||
.full-width-mobile {
|
||||
width: 100% !important;
|
||||
}
|
||||
}
|
||||
/* full-width for mobile. Some component use inline styling for width */
|
||||
|
||||
[dir="ltr"] .ltr\:-right-57 {
|
||||
right: -14.5rem;
|
||||
}
|
||||
|
10
resources/assets/sass/app.css
vendored
10
resources/assets/sass/app.css
vendored
@ -93,7 +93,7 @@
|
||||
background-color: #DCE2F9;
|
||||
}
|
||||
|
||||
.menu-list a svg {
|
||||
.menu-list ul svg {
|
||||
width: 22px;
|
||||
height: 24px;
|
||||
fill: none;
|
||||
@ -572,6 +572,14 @@ html[dir="rtl"] .lines-radius-border thead td:last-child {
|
||||
}
|
||||
/* responsive for role mobile */
|
||||
|
||||
/* full-width for mobile. Some component use inline styling for width */
|
||||
@media only screen and (max-width: 991px) {
|
||||
.full-width-mobile {
|
||||
width: 100% !important;
|
||||
}
|
||||
}
|
||||
/* full-width for mobile. Some component use inline styling for width */
|
||||
|
||||
[dir="ltr"] .ltr\:-right-57 {
|
||||
right: -14.5rem;
|
||||
}
|
||||
|
@ -7,7 +7,7 @@
|
||||
</div>
|
||||
|
||||
<div class="my-10">
|
||||
<x-link href="https://akaunting.com/lp/accounting-software?utm_source=software&utm_medium=invoice_payment&utm_campaign=plg" class="bg-purple text-white px-3 py-1.5 mb-3 sm:mb-0 rounded-xl text-sm font-medium leading-6 hover:bg-purple-700" override="class">
|
||||
<x-link href="https://akaunting.com/accounting-software?utm_source=software&utm_medium=invoice_payment&utm_campaign=plg" class="bg-purple text-white px-3 py-1.5 mb-3 sm:mb-0 rounded-xl text-sm font-medium leading-6 hover:bg-purple-700" override="class">
|
||||
{{ trans('portal.get_started') }}
|
||||
</x-link>
|
||||
</div>
|
||||
|
@ -159,7 +159,7 @@
|
||||
|
||||
<div class="my-10">
|
||||
<x-link
|
||||
href="https://akaunting.com/lp/accounting-software?utm_source=software&utm_medium=invoice_index&utm_campaign=plg"
|
||||
href="https://akaunting.com/accounting-software?utm_source=software&utm_medium=invoice_index&utm_campaign=plg"
|
||||
class="bg-purple text-white px-3 py-1.5 mb-3 sm:mb-0 rounded-xl text-sm font-medium leading-6 hover:bg-purple-700"
|
||||
override="class"
|
||||
>
|
||||
|
@ -67,7 +67,7 @@
|
||||
|
||||
<div class="my-10">
|
||||
<x-link
|
||||
href="https://akaunting.com/lp/accounting-software?utm_source=software&utm_medium=payment_index&utm_campaign=plg"
|
||||
href="https://akaunting.com/accounting-software?utm_source=software&utm_medium=payment_index&utm_campaign=plg"
|
||||
class="bg-purple text-white px-3 py-1.5 mb-3 sm:mb-0 rounded-xl text-sm font-medium leading-6 hover:bg-purple-700"
|
||||
override="class"
|
||||
>
|
||||
|
Loading…
x
Reference in New Issue
Block a user