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.

22 lines
705 B

7 years ago
@extends('app')
7 years ago
7 years ago
@section('content')
7 years ago
@if($apps->first())
@foreach($apps as $app)
<section class="item" style="background-color: {{ $app->colour }}">
@if($app->icon)
<img src="" />
@else
<i class="fas fa-app-store-ios"></i>
@endif
7 years ago
{{ $app->title }}
7 years ago
Item
<a class="link" href="{{ $app->url }}"><i class="fas fa-arrow-alt-to-right"></i></a>
7 years ago
</section>
7 years ago
@endforeach
@else
There are currently no Applications, add one here
@endif
7 years ago
7 years ago
@endsection