Projekt

Obecné

Profil

Stáhnout (298 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
@extends('layouts.app')
2

    
3
@section('content')
4
    <h1>{{$title}}</h1>
5
    @if(count($services) > 0)
6
        <ul class="list-group">
7
            @foreach($services as $service)
8
                <li class="list-group-item">{{$service}}</li>
9
            @endforeach
10
        </ul>
11
    @endif
12
@endsection
(2-2/2)