@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-6 col-md-offset-3 tweet-list">
|
|
|
|
<h2>Team {{ $team->name }}</h2>
|
|
|
|
@each('components.tweet', $tweets, 'tweet')
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|