You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
740 B
23 lines
740 B
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
|
|
<div class="col-md-6 col-lg-6 col-md-offset-3 col-lg-offset-3">
|
|
|
|
<div class="panel panel-primary ">
|
|
<div class="panel-heading">Projects <a class="pull-right btn btn-primary btn-sm" href="/projects/create">Create
|
|
New</a></div>
|
|
<div class="panel-body">
|
|
|
|
<ul class="list-group">
|
|
@foreach($projects as $project)
|
|
<a href="projects/{{ $project->id }}" class="">
|
|
<li class="list-group-item">{{ $project->name }}</li>
|
|
</a>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@endsection |