Skip to content

Commit

Permalink
- Fix indentation on webpack.mix.js
Browse files Browse the repository at this point in the history
- Add social media button on login page and admin footer layout
- Change menu name from "Education" to "Educate"
  • Loading branch information
ianriizky committed Jan 31, 2022
1 parent 3a213ea commit 7fcceb3
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 16 deletions.
18 changes: 17 additions & 1 deletion resources/views/auth/login.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,23 @@ class="custom-control-input @error('remember') is-invalid @enderror"
</form>

<div class="text-center mt-5 text-small">
Copyright &copy; {{ config('app.name') }} 2022. Made with 💙 by Stisla
<div>
<a href="https://instagram.com" target="_blank">
<i class="fab fa-instagram" style="font-size: 2em;"></i>
</a>

<a href="https://facebook.com" target="_blank">
<i class="fab fa-facebook" style="font-size: 2em;"></i>
</a>

<a href="https://twitter.com" target="_blank">
<i class="fab fa-twitter" style="font-size: 2em;"></i>
</a>
</div>

<div class="mt-2">
Copyright &copy; {{ config('app.name') }} 2022. Made with 💙 by Stisla
</div>

<div class="mt-2">
<a href="#">@lang('Privacy Policy')</a>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/header.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

<li class="nav-item @if (Route::is('education.*')) active @endif">
<a href="{{ route('education.index') }}" class="nav-link">
<span>@lang('Education')</span>
<span>@lang('Educate')</span>
</a>
</li>

Expand Down
6 changes: 3 additions & 3 deletions resources/views/education/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@section('content')
<section class="section">
<div class="section-header">
<h1>@lang('Education')</h1>
<h1>@lang('Educate')</h1>

<div class="section-header-breadcrumb">
<div class="breadcrumb-item">
Expand All @@ -12,7 +12,7 @@

<div class="breadcrumb-item">
<a href="{{ route('education.index') }}">
<i class="fas @lang('icon.education')"></i> <span>@lang('Education')</span>
<i class="fas @lang('icon.education')"></i> <span>@lang('Educate')</span>
</a>
</div>
</div>
Expand All @@ -21,7 +21,7 @@
<div class="section-body">
<div class="card">
<div class="card-body">
<p>@lang('Welcome to the education page!')</p>
<p>@lang('Welcome to the educate page!')</p>
</div>
</div>
</div>
Expand Down
24 changes: 22 additions & 2 deletions resources/views/layouts/admin.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,30 @@

<footer class="main-footer">
<div class="footer-left">
Copyright &copy; {{ config('app.name') }} 2022 <div class="bullet"></div> Design By <a href="https://nauval.in/">Muhamad Nauval Azhar</a>
Copyright &copy; {{ config('app.name') }} 2022

<span class="d-none d-lg-inline">
<div class="bullet"></div>

Design By <a href="https://nauval.in/">Muhamad Nauval Azhar</a>

<div class="bullet"></div>

<a href="https://instagram.com" target="_blank">
<i class="fab fa-instagram"></i>
</a>

<a href="https://facebook.com" target="_blank">
<i class="fab fa-facebook"></i>
</a>

<a href="https://twitter.com" target="_blank">
<i class="fab fa-twitter"></i>
</a>
</span>
</div>

<div class="footer-right">
<div class="footer-right d-none d-lg-block">
{{ config('app.name') }}
</div>
</footer>
Expand Down
18 changes: 9 additions & 9 deletions webpack.mix.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ const getFiles = directory => fs.readdirSync(directory).filter(
);

/*
|--------------------------------------------------------------------------
| Mix Asset Management
|--------------------------------------------------------------------------
|
| Mix provides a clean, fluent API for defining some Webpack build steps
| for your Laravel applications. By default, we are compiling the CSS
| file for the application as well as bundling up all the JS files.
|
*/
|--------------------------------------------------------------------------
| Mix Asset Management
|--------------------------------------------------------------------------
|
| Mix provides a clean, fluent API for defining some Webpack build steps
| for your Laravel applications. By default, we are compiling the CSS
| file for the application as well as bundling up all the JS files.
|
*/

mix.sass('resources/scss/stisla/master.scss', 'public/css/stisla').sourceMaps();
mix.sass('resources/scss/stisla/style.scss', 'public/css/stisla');
Expand Down

0 comments on commit 7fcceb3

Please sign in to comment.