aboutsummaryrefslogtreecommitdiff
path: root/resources/views/pages/services.blade.php
blob: 3654510ee2193777743d75796af8cefb48fa6748 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
@extends('layouts.app')

@section('content')
    <h1>{{ $title ?? 'Index'}}</h1>
    <p>Something...</p>
    @if(count($services) > 0)
    <ul class="list-group">
        @foreach($services as $service)
            <li class="list-group-item">{{$service}}</li>
        @endforeach
    </ul>
    @endif
@endsection