Lots of tests needed fixing, but it seemed to be a whitespace parsing
error in the view files 🤔
18 lines
436 B
PHP
18 lines
436 B
PHP
@extends('master')
|
|
|
|
@section('title')List Clients « Admin CP « @stop
|
|
|
|
@section('content')
|
|
<h1>Clients</h1>
|
|
<ul>
|
|
@foreach($clients as $client)
|
|
<li>
|
|
{{ $client['client_url'] }} : {{ $client['client_name'] }}
|
|
<a href="/admin/clients/{{ $client['id'] }}/edit">edit?</a>
|
|
</li>
|
|
@endforeach
|
|
</ul>
|
|
<p>
|
|
Create a <a href="/admin/clients/new">new entry</a>?
|
|
</p>
|
|
@stop
|