<link href='//fonts.googleapis.com/css?family=Roboto:400,300' rel='stylesheet' type='text/css'>
@section('css')
@stop
@extends('myadmin.layout')
@section('bday')
<div class="row">
<div class="col-md-4">
<table class="table stripped-table">
@foreach($users as $user)
<tr>
<td> {{$user->name}} </td>
<td> {{$user->daysto}} </td>
<td> {{$user->bday}} </td>
</tr>
@endforeach
</table>
</div>
</div>
@stop
@section('css')
<link href="..."/>
@stop
@section('js')
<script src="..."></script>
@stop