Skip to content

Instantly share code, notes, and snippets.

@evercode1
Created February 13, 2017 17:26
Show Gist options
  • Save evercode1/bd7b8dfd2a8ab93e0b01416581c0174c to your computer and use it in GitHub Desktop.
Save evercode1/bd7b8dfd2a8ab93e0b01416581c0174c to your computer and use it in GitHub Desktop.
chapter 4 test.index revised
@extends('layouts.master')
@section('content')
<h1>This is My Test Page</h1>
@if(count($beatles) > 0)
@foreach($beatles as $beatle)
{{ $beatle }} <br>
@endforeach
@else
<h1> Sorry, nothing to show...</h1>
@endif
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment