File tree 3 files changed +5
-4
lines changed
3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,8 @@ A clean code generator for Laravel framework that will save you time! This aweso
27
27
28
28
## Installation
29
29
30
- To download this package into your laravel project, use the command-line to execute the following command
30
+ To download this package into your laravel project, use the command-line to execute the following command
31
+
31
32
```
32
33
composer require crestapps/laravel-code-generator --dev
33
34
```
Original file line number Diff line number Diff line change 25
25
<div class="btn-group btn-group-xs pull-right" role="group">
26
26
27
27
<a href="{{ route('{{createRouteName}}') }}" class="btn btn-primary" title="Add {{modelNameClass}}">
28
- <span class="glyphicon glyphicon-plus" aria-hidden="true" / >
28
+ <span class="glyphicon glyphicon-plus" aria-hidden="true"></span >
29
29
</a>
30
30
31
31
</div>
Original file line number Diff line number Diff line change 24
24
25
25
<div class="btn-group btn-group-xs pull-right" role="group">
26
26
<a href="{{ route('{{createRouteName}}') }}" class="btn btn-primary" title="Add {{modelNameClass}}">
27
- <span class="glyphicon glyphicon-plus" aria-hidden="true" / >
27
+ <span class="glyphicon glyphicon-plus" aria-hidden="true"></span >
28
28
</a>
29
29
</div>
30
30
61
61
<form method="POST" action="{!! route('{{destroyRouteName}}', ${{modelName}}->{{primaryKey}}) !!}" accept-charset="UTF-8" style="display: inline;" novalidate="novalidate">
62
62
<input name="_method" value="DELETE" type="hidden">
63
63
{{ csrf_field() }}
64
- <button type="submit" class="btn btn-danger btn-xs" title="Delete {{modelNameClass}}" onclick="return confirm("Confirm delete?")" id="sometest" >
64
+ <button type="submit" class="btn btn-danger btn-xs" title="Delete {{modelNameClass}}" onclick="return confirm("Confirm delete?")">
65
65
<span class="glyphicon glyphicon-trash" aria-hidden="true" title="Delete {{modelNameClass}}"></span>
66
66
</button>
67
67
</form>
You can’t perform that action at this time.
0 commit comments