Heimdall/resources/views/welcome.blade.php
2018-02-01 14:45:59 +00:00

16 lines
395 B
PHP

@extends('app')
@section('content')
@if($apps->first())
@foreach($apps as $app)
<section class="item" style="background-color: {{ $app->colour }}">
{{ $app->title }}
Item
</section>
@endforeach
@else
There are currently no Applications, add one here
@endif
@endsection