@extends('dashboard::layouts.admin') @section('content')
{!! Breadcrumbs::render('hackathons') !!} @include('hackathon::backend.partials.title') CREATE HACKATHON
@if(!$hackathons->isEmpty()) @foreach($hackathons as $hackathon) @endforeach @else @endif
Title Teaser Status Hacks Edit Delete
{{ $hackathon->title }} {!! str_limit(strip_tags($hackathon->teaser, 50)) !!} {{ $hackathon->status->name }}
Hackathon list is empty
@if(!$hackathons->isEmpty()) @include('dashboard::partials.pagination', ['paginator' => $hackathons, 'linkLimit' => $linkLimit]) @endif
@endsection