Commit 39d2ba1f authored by Shahzod's avatar Shahzod

first commit (10/08/2019//10:56) Terms

parent 0818fa3b
This diff is collapsed.
...@@ -36,4 +36,8 @@ class HomeController extends Controller ...@@ -36,4 +36,8 @@ class HomeController extends Controller
{ {
return view('pages.tarifs.index'); return view('pages.tarifs.index');
} }
public function terms()
{
return view('pages.terms');
}
} }
...@@ -729,7 +729,7 @@ ...@@ -729,7 +729,7 @@
</section> </section>
<section class="copyright bg-darkest well5" style="background-color: #0B3C5D;"> <section class="copyright bg-darkest well5" style="background-color: #0B3C5D;">
<div class="container"> <div class="container">
<p class="pull-sm-left" style="color: #ffffff;">&#169; <span id="copyright-year"></span> All Rights Reserved <a href="terms.html" style="color: #ffffff;">Terms of Use and Privacy Policy</a></p> <p class="pull-sm-left" style="color: #ffffff;">&#169; <span id="copyright-year"></span> All Rights Reserved <a href="{{route('terms')}}" style="color: #ffffff;">Terms of Use and Privacy Policy</a></p>
<ul class="list-inline pull-sm-right offset-3"> <ul class="list-inline pull-sm-right offset-3">
<li><a class="fa-facebook" href="#" style="color: #ffffff;"></a></li> <li><a class="fa-facebook" href="#" style="color: #ffffff;"></a></li>
<li><a class="fa-twitter" href="#" style="color: #ffffff;"></a></li> <li><a class="fa-twitter" href="#" style="color: #ffffff;"></a></li>
......
This diff is collapsed.
...@@ -91,6 +91,7 @@ Route::get('/profile/password/', 'ProfileController@edit_password'); ...@@ -91,6 +91,7 @@ Route::get('/profile/password/', 'ProfileController@edit_password');
Route::post('/profile/password/', 'ProfileController@edit_password'); Route::post('/profile/password/', 'ProfileController@edit_password');
Route::get('/tariffs', 'HomeController@tariffs')->name('tariffs'); Route::get('/tariffs', 'HomeController@tariffs')->name('tariffs');
Route::get('/terms', 'HomeController@terms')->name('terms');
Auth::routes(); Auth::routes();
Route::get('/home', 'HomeController@index')->name('home'); Route::get('/home', 'HomeController@index')->name('home');
......
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