Skip to content

Instantly share code, notes, and snippets.

@manhg
Created July 18, 2014 06:44
Show Gist options
  • Save manhg/80d7aa0a625b52c92368 to your computer and use it in GitHub Desktop.
Save manhg/80d7aa0a625b52c92368 to your computer and use it in GitHub Desktop.
<ul class="bxslider">
<?php
$obj = (object)['written_at' => '2014.05.01', 'title' =>「目線を変えれば、学生も変わる 学生指導に自信がもてるコツ」開催決定! '];
?>
@foreach (array_fill(0, 4, $obj) as $headline)
<li>
<a href="">
<div>
<dl>
<dt>{{ $headline->written_at }} </dt>
<dd>{{ $headline->title }}</dd>
</dl>
</div>
</a>
</li>
@endforeach
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment