Created
February 13, 2017 17:26
-
-
Save evercode1/bd7b8dfd2a8ab93e0b01416581c0174c to your computer and use it in GitHub Desktop.
chapter 4 test.index revised
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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