Heimdall/resources/views/welcome.blade.php

22 lines
705 B
PHP
Raw Normal View History

2018-01-29 20:14:40 +00:00
@extends('app')
2018-01-26 14:35:01 +00:00
2018-01-29 20:14:40 +00:00
@section('content')
2018-02-01 14:45:59 +00:00
@if($apps->first())
@foreach($apps as $app)
<section class="item" style="background-color: {{ $app->colour }}">
2018-02-01 15:57:16 +00:00
@if($app->icon)
<img src="" />
@else
<i class="fas fa-app-store-ios"></i>
@endif
2018-02-01 14:45:59 +00:00
{{ $app->title }}
2018-01-29 12:41:57 +00:00
Item
2018-02-01 15:57:16 +00:00
<a class="link" href="{{ $app->url }}"><i class="fas fa-arrow-alt-to-right"></i></a>
2018-01-29 12:41:57 +00:00
</section>
2018-02-01 14:45:59 +00:00
@endforeach
@else
There are currently no Applications, add one here
@endif
2018-01-29 12:41:57 +00:00
2018-01-29 20:14:40 +00:00
@endsection