sonarrradarrplexorganizrnginxdashboardstartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpage
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.
16 lines
395 B
16 lines
395 B
@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
|