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