card style new pilots on homepage

This commit is contained in:
Nabeel Shahzad
2017-08-10 01:00:08 -05:00
parent 8c114198d6
commit bf410c4f99
3 changed files with 52 additions and 27 deletions

View File

@@ -2,6 +2,7 @@
namespace App\Http\Controllers;
use App\Models\User;
class HomeController extends AppBaseController
{
@@ -11,6 +12,9 @@ class HomeController extends AppBaseController
*/
public function index()
{
return $this->view('home');
$users = User::orderBy('created_at', 'desc')->take(4)->get();
return $this->view('home', [
'users' => $users,
]);
}
}

View File

@@ -2,6 +2,21 @@
*
*/
.card-bg {
float: left;
position: absolute;
display:block;
bottom: 10px;
width:100%;
height:100%;
font-size: 275px;
text-align: center;
}
.blue-bg {
background: #067ec1;
}
.border-blue-bottom {
border-bottom: 3px solid #067ec1;
}

View File

@@ -2,32 +2,38 @@
@section('content')
<div class="row">
<div class="col-sm-3 push-3"></div>
<div class="col-sm-6 text-center">
<h1 class="description">phpVMS<sup>7</sup></h1>
<br />
<blockquote>
<p class="blockquote blockquote-primary">
Oh! I have slipped the surly bonds of earth,<br />
And danced the skies on laughter-silvered wings;<br />
Sunward I've climbed, and joined the tumbling mirth<br />
Of sun-split clouds, --and done a hundred things<br />
You have not dreamed of --Wheeled and soared and swung<br />
High in the sunlit silence. Hov'ring there<br />
I've chased the shouting wind along, and flung<br />
My eager craft through footless halls of air...<br />
Up, up the long, delirious, burning blue<br />
I've topped the wind-swept heights with easy grace<br />
Where never lark or even eagle flew --<br />
And, while with silent lifting mind I've trod<br />
The high untrespassed sanctity of space,<br />
Put out my hand, and touched the face of God.<br />
<br>
<small>
- John Gillespie Magee, Jr
</small>
</p>
</blockquote>
<div class="col-sm-12">
</div>
</div>
<div class="row">
<div class="col-sm-12">
<h2 class="description">newest pilots</h2>
</div>
@foreach($users as $user)
<div class="col-sm-3 ">
<div class="card card-signup blue-bg">
<div class="card-bg">
<i class="fa fa-user-o" style="opacity: .1;"></i>
</div>
<div class="header header-primary text-center blue-bg">
<h3 class="title title-up text-white">
<a href="#" class="text-white">{!! $user->name !!}</a>
</h3>
<div class="photo-container">
<img class="rounded-circle"
src="https://en.gravatar.com/userimage/12856995/7c7c1da6387853fea65ff74983055386.png">
</div>
</div>
<div class="content content-center">
<div class="social-description text-center text-white">
<h2 class="description text-white">{!! $user->home_airport->icao !!}</h2>
</div>
</div>
<div class="footer text-center">
<!--<a href="#" class="btn btn-neutral btn-round btn-lg">Profile</a>-->
</div>
</div>
</div>
@endforeach
</div>
@endsection