blob: e1e5fbf4796c5b3dddaa2b5a219f51e25dbc5aa8 (
plain) (
tree)
|
|
@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
|