Commit cc596816 authored by Sylvain's avatar Sylvain

Personnalize application name

parent 7ff07b69
......@@ -27,7 +27,7 @@ Route::group([
Route::post('/', 'ConfigController@store')->name('post');
});
// Campagne
// Small
Route::group(['prefix' => 'small', 'as' => 'small.'], function() {
Route::get('/', 'SmallController@index')->name('index');
Route::get('create', 'SmallController@create')->name('create');
......
......@@ -5,7 +5,7 @@
<div class="login-box">
<div class="login-logo">
<img src="{{ asset('/images/isidiag_logo.png') }}" alt="Isidiag" style="max-width: 300px;">
{!! config('modulus.label_name') !!}
</div>
<div class="card">
......
......@@ -5,7 +5,7 @@
<div class="login-box">
<div class="login-logo">
<a href="{{ url('/') }}"><b>M</b>odulus</a>
{!! config('modulus.label_name') !!}
</div>
<div class="card">
......
......@@ -5,7 +5,7 @@
<div class="login-box">
<div class="login-logo">
<img src="{{ asset('/images/isidiag_logo.png') }}" alt="Isidiag" style="max-width: 300px;">
{!! config('modulus.label_name') !!}
</div>
<div class="card">
......
......@@ -8,7 +8,7 @@
<!-- CSRF Token -->
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>Isidiag - {{ strip_tags($title ?? '') }}</title>
<title>{{ config('app.name') }} - {{ strip_tags($title ?? '') }}</title>
<!-- Theme style -->
<link rel="stylesheet" href="{{ mix('css/app.css') }}">
......
......@@ -8,7 +8,7 @@
<!-- CSRF Token -->
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>Isidiag</title>
<title>{{ config('app.name') }}</title>
<!-- Styles -->
<link href="{{ mix('css/app.css') }}" rel="stylesheet">
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment