Skip to content

Commit

Permalink
drop laravel 5.1 & 5.2 support
Browse files Browse the repository at this point in the history
  • Loading branch information
sohelamin committed Dec 16, 2018
1 parent 82f8b17 commit e086cdb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
This Generator package provides various generators like CRUD, API, Controller, Model, Migration, View for your painless development of your applications.

## Requirements
Laravel >=5.1
PHP >= 5.5.9
Laravel >= 5.3
PHP >= 5.6.4

## Installation
```
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
}
],
"require": {
"php": ">=5.5.9",
"illuminate/support": "^5.1",
"laravelcollective/html": "^5.1"
"php": ">=5.6.4",
"illuminate/support": "^5.3",
"laravelcollective/html": "^5.3"
},
"require-dev": {
"mockery/mockery": "^0.9.6",
Expand Down
2 changes: 1 addition & 1 deletion src/stubs/views/html/index.blade.stub
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<tbody>
@foreach($%%crudName%% as $item)
<tr>
<td>{{ ++$i }}</td>
<td>{{ $loop->iteration }}</td>
%%formBodyHtml%%
<td>
<a href="{{ url('/%%routeGroup%%%%viewName%%/' . $item->%%primaryKey%%) }}" title="View %%modelName%%"><button class="btn btn-info btn-sm"><i class="fa fa-eye" aria-hidden="true"></i> View</button></a>
Expand Down
2 changes: 1 addition & 1 deletion src/stubs/views/laravelcollective/index.blade.stub
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<tbody>
@foreach($%%crudName%% as $item)
<tr>
<td>{{ ++$i }}</td>
<td>{{ $loop->iteration }}</td>
%%formBodyHtml%%
<td>
<a href="{{ url('/%%routeGroup%%%%viewName%%/' . $item->%%primaryKey%%) }}" title="View %%modelName%%"><button class="btn btn-info btn-sm"><i class="fa fa-eye" aria-hidden="true"></i> View</button></a>
Expand Down

0 comments on commit e086cdb

Please sign in to comment.