Skip to content

Commit

Permalink
Merge pull request #64 from anandiamy/patch-1
Browse files Browse the repository at this point in the history
fix : Undefined index: OPTIONS
  • Loading branch information
garygreen authored Oct 4, 2019
2 parents 5d8431b + c6778f5 commit da76b81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/routes.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
</tr>
</thead>
<tbody>
<?php $methodColours = ['GET' => 'success', 'HEAD' => 'default', 'POST' => 'primary', 'PUT' => 'warning', 'PATCH' => 'info', 'DELETE' => 'danger']; ?>
<?php $methodColours = ['GET' => 'success', 'HEAD' => 'default', 'OPTIONS' => 'default', 'POST' => 'primary', 'PUT' => 'warning', 'PATCH' => 'info', 'DELETE' => 'danger']; ?>
@foreach ($routes as $route)
<tr>
<td>
Expand Down

0 comments on commit da76b81

Please sign in to comment.