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.

15 lines
324 B

7 years ago
@extends('app')
7 years ago
7 years ago
@section('content')
7 years ago
@if($apps->first())
@foreach($apps as $app)
7 years ago
@include('item')
7 years ago
@endforeach
7 years ago
@include('add')
7 years ago
@else
7 years ago
There are currently no Applications, <a href="{{ route('items.create') }}">add one here</a>
7 years ago
@include('add')
7 years ago
@endif
7 years ago
7 years ago
@endsection