close admin registration

This commit is contained in:
merdan 2019-11-30 11:19:32 +05:00
parent 77a6432944
commit c5473c40ff
2 changed files with 6 additions and 6 deletions

View File

@ -19,13 +19,13 @@ return [
'logo_mini' => '<b>B</b>tm',
// Developer or company name. Shown in footer.
'developer_name' => 'Merdan Muhammedow',
'developer_name' => 'Digital TPS',
// Developer website. Link in footer.
'developer_link' => 'http://tmchat.ru',
'developer_link' => 'http://tpsadvertising.com',
// Show powered by Laravel Backpack in the footer?
'show_powered_by' => true,
'show_powered_by' => false,
// The AdminLTE skin. Affects menu color and primary/secondary colors used throughout the application.
'skin' => 'skin-purple',
@ -57,7 +57,7 @@ return [
| By default the registration is open only on localhost.
*/
'registration_open' => env('BACKPACK_REGISTRATION_OPEN', true),
'registration_open' => env('BACKPACK_REGISTRATION_OPEN', false),
/*
|--------------------------------------------------------------------------
@ -121,7 +121,7 @@ return [
// Other options:
// - placehold (generic image with his first letter)
// - example_method_name (specify the method on the User model that returns the URL)
'avatar_type' => 'gravatar',
'avatar_type' => 'placehold',
/*
|--------------------------------------------------------------------------

View File

@ -44,7 +44,7 @@
<span title='{{money($ticket->price, $event->currency)}} @lang("Public_ViewEvent.ticket_price") + {{money($ticket->total_booking_fee, $event->currency)}} @lang("Public_ViewEvent.booking_fees")'>{{money($ticket->total_price, $event->currency)}} </span>
<span class="tax-amount text-muted text-smaller">{{ ($event->organiser->tax_name && $event->organiser->tax_value) ? '(+'.money(($ticket->total_price*($event->organiser->tax_value)/100), $event->currency).' '.$event->organiser->tax_name.')' : '' }}</span>
<meta property="priceCurrency"
content="{{ $event->currency->code }}">
content="{{ $event->currency->code ?? 'manat'}}">
<meta property="price"
content="{{ number_format($ticket->price, 2, '.', '') }}">
@endif