Skip to content
This repository has been archived by the owner on Jun 22, 2022. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
calebporzio committed Jan 14, 2017
1 parent 0fa354e commit b2ffb27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Now you can access these steps along with their state wherever you like. Here is
@foreach (Auth::user()->onboarding()->steps as $step)
<span>
@if($step->complete())
<i class="fa fa-check-square-o fa-fw" ></i>
<i class="fa fa-check-square-o fa-fw"></i>
<s>{{ $loop->iteration }}. {{ $step->title }}</s>
@else
<i class="fa fa-square-o fa-fw"></i>
Expand Down Expand Up @@ -86,7 +86,7 @@ $onboarding->steps()->each(function($step) {
$step->link;
$step->complete();
$step->incomplete();
}
});
```
Definining custom attributes and accessing them:
```php
Expand Down

0 comments on commit b2ffb27

Please sign in to comment.