aboutsummaryrefslogtreecommitdiff
path: root/resources/views/pages/index.blade.php
blob: e1e5fbf4796c5b3dddaa2b5a219f51e25dbc5aa8 (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>
        @foreach($services as $service)
            <li>{{$service}}</li>
        @endforeach
    </ul>
    @endif
@endsection