From e51142fbb8ba83c3938915e213fc3037f7fb06f9 Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Wed, 26 Dec 2018 12:52:13 -0500 Subject: * Home page: List out all the songs --- laravel/resources/views/welcome.blade.php | 39 ++++++------------------------- 1 file changed, 7 insertions(+), 32 deletions(-) diff --git a/laravel/resources/views/welcome.blade.php b/laravel/resources/views/welcome.blade.php index 26ca674..4cbb234 100644 --- a/laravel/resources/views/welcome.blade.php +++ b/laravel/resources/views/welcome.blade.php @@ -20,10 +20,6 @@ margin: 0; } - .full-height { - height: 100vh; - } - .flex-center { align-items: center; display: flex; @@ -40,27 +36,9 @@ top: 18px; } - .content { - text-align: center; - } - .title { font-size: 84px; } - - .links > a { - color: #636b6f; - padding: 0 25px; - font-size: 13px; - font-weight: 600; - letter-spacing: .1rem; - text-decoration: none; - text-transform: uppercase; - } - - .m-b-md { - margin-bottom: 30px; - } @@ -80,18 +58,15 @@ @endif
-
- Laravel +
+ Prosongsa Songs
- +
    + @foreach( App\Song::all() as $song ) +
  • {{ $song['title'] }} + @endforeach +
-- cgit 1.4.1