Rocket LMS - Learning Management & Academy Script

Rocket LMS - Learning Management & Academy Script v1.9.9 Untouched

No permission to download

nyerhofrancis

New member
Oct 19, 2022
3
0
1
Paste it in this destination:
resources/views/admin/settings/index.php




@extends('admin.layouts.app')

@section('content')
<section class="section">
<div class="section-header">
<h1>{{ trans('admin/main.settings') }}</h1>
<div class="section-header-breadcrumb">
<div class="breadcrumb-item active"><a href="#">{{ trans('admin/main.dashboard') }}</a></div>
<div class="breadcrumb-item">{{ trans('admin/main.settings') }}</div>
</div>
</div>

<div class="section-body">
<h2 class="section-title">{{ trans('admin/main.overview') }}</h2>
<p class="section-lead">
{{ trans('admin/main.overview_hint') }} <br/>
</p>

<div class="row">
@can('admin_settings_general')
<div class="col-lg-6">
<div class="card card-large-icons">
<div class="card-icon bg-primary text-white">
<i class="fas fa-cog"></i>
</div>
<div class="card-body">
<h4>{{ trans('admin/main.general_card_title') }}</h4>
<p>{{ trans('admin/main.general_card_hint') }}</p>
<a href="/admin/settings/general" class="card-cta">{{ trans('admin/main.change_setting') }}<i class="fas fa-chevron-right"></i></a>
</div>
</div>
</div>
@endcan

@can('admin_settings_financial')
<div class="col-lg-6">
<div class="card card-large-icons">
<div class="card-icon bg-primary text-white">
<i class="fas fa-dollar-sign"></i>
</div>
<div class="card-body">
<h4>{{ trans('admin/main.financial_card_title') }}</h4>
<p>{{ trans('admin/main.financial_card_hint') }}</p>
<a href="/admin/settings/financial" class="card-cta">{{ trans('admin/main.change_setting') }}<i class="fas fa-chevron-right"></i></a>
</div>
</div>
</div>
@endcan

@can('admin_settings_personalization')
<div class="col-lg-6">
<div class="card card-large-icons">
<div class="card-icon bg-primary text-white">
<i class="fas fa-wrench"></i>
</div>
<div class="card-body">
<h4>{{ trans('admin/main.personalization_card_title') }}</h4>
<p>{{ trans('admin/main.personalization_card_hint') }}</p>
<a href="/admin/settings/personalization/page_background" class="card-cta">{{ trans('admin/main.change_setting') }}<i class="fas fa-chevron-right"></i></a>
</div>
</div>
</div>
@endcan

@can('admin_settings_notifications')
<div class="col-lg-6">
<div class="card card-large-icons">
<div class="card-icon bg-primary text-white">
<i class="fas fa-bell"></i>
</div>
<div class="card-body">
<h4>{{ trans('admin/main.notifications_card_title') }}</h4>
<p>{{ trans('admin/main.notifications_card_hint') }}</p>
<a href="/admin/settings/notifications" class="card-cta">{{ trans('admin/main.change_setting') }}<i class="fas fa-chevron-right"></i></a>
</div>
</div>
</div>
@endcan

@can('admin_settings_seo')
<div class="col-lg-6">
<div class="card card-large-icons">
<div class="card-icon bg-primary text-white">
<i class="fas fa-globe"></i>
</div>
<div class="card-body">
<h4>{{ trans('admin/main.seo_card_title') }}</h4>
<p>{{ trans('admin/main.seo_card_hint') }}</p>
<a href="/admin/settings/seo" class="card-cta">{{ trans('admin/main.change_setting') }}<i class="fas fa-chevron-right"></i></a>
</div>
</div>
</div>
@endcan
{{-- 8246cb --}}
@can('admin_settings_customization')
<div class="col-lg-6">
<div class="card card-large-icons">
<div class="card-icon bg-primary text-white">
<i class="fas fa-list-alt"></i>
</div>
<div class="card-body">
<h4>{{ trans('admin/main.customization_card_title') }}</h4>
<p>{{ trans('admin/main.customization_card_hint') }}</p>
<a href="/admin/settings/customization" class="card-cta text-primary">{{ trans('admin/main.change_setting') }}<i class="fas fa-chevron-right"></i></a>
</div>
</div>
</div>
@endcan
</div>
</div>
</section>
@endsection
Thanks. Its worked.
 

dreiday

New member
May 24, 2022
15
4
3
what stmp servers have people been using and does anyone know where to edit the admin login page to remove the rocket branding?
 

mavikumsal

Member
Jun 25, 2020
49
11
8
At times the simplest things are the most complicated. Here I would be making the very first attempt to further simplify the simpler things . So lets get started :

I would divide this implementation into 2 parts :

Creating / Using an existing Gmail account to create app passwords.
Adding the Gmail account details to the Laravel Application.
Creating / Using an existing Gmail account to create app password:
I would be using my existing Gmail account , but in case if you wish to create a new account , you can do so using this Link

Next we need to enable 2 step Verification in Gmail as follows:

Login into Gmail .
To be able to create app passwords we need to first enable 2 Step Verification .
Click on the user icon and select “Google Account” .
Next we need to select Security from the left nav , then select “2 Step Verification” . (Doing this would ask you to login again and then Gmail would authenticate you further using OTP )

Now we generate the app password that we would be using in the Laravel Application , again clicking on the Google Account in the user icon ->Security ->App Passwords . (This would again ask you to login and then authenticate using OTP)
We need to select “Mail” as the app and “Other (Custom name)” as the device from the drop downs .

Selecting this would ask you to add the name of the Application for which you wish to generate the password and once added click GENERATE.

This would open a pop up with your 16 character app password . (Kindly copy this and keep it safe).
We are all set to add these detail’s to the Application.
2. Adding Gmail Account detail’s to the Laravel Application:

We need to edit the following in the .env file
MAIL_DRIVER=smtp
MAIL_HOST=mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null

with

MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=465
MAIL_USERNAME=[email protected]
MAIL_PASSWORD=yourapppassword
MAIL_ENCRYPTION=ssl

There is no need for us to make any change in the config/mail.php file , since it would pick the values from the .env file.
 

dreiday

New member
May 24, 2022
15
4
3
use your own SMTP server provided by your hosting, edit the photo within the preset images of the script
I am referring to editing the text that shows on the admin login. It is branded with rocket.

For the first, I wanted to know what options people were using e.g sendgrip, mailjet etc and not a generic answer. I have hosts that do not provide SMTP as many others do
 
Last edited:

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu