Skip to content

Commit

Permalink
fix : Undefined index: OPTIONS
Browse files Browse the repository at this point in the history
fix undefined index options errorexception
  • Loading branch information
anandiamy authored Sep 30, 2019
1 parent 5d8431b commit c6778f5
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 c6778f5

Please sign in to comment.