Skip to content

Commit c716bd5

Browse files
author
LAPTOP-48KIJ867\Langri
committed
no message
1 parent e29cde1 commit c716bd5

File tree

5 files changed

+11
-20
lines changed

5 files changed

+11
-20
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ Current version:
1717
## Installation
1818

1919
1. Add
20-
`"unrulynatives/helpers": "^1.0"`
20+
`"unrulynatives/helpers": "^1.0"`
2121
to your composer.json file.
2222

2323
2. Add this to your `config/app.php` file in packages section
24-
`Unrulynatives\Helpers\HelpersServiceProvider::class,`
24+
`Unrulynatives\Helpers\HelpersServiceProvider::class,`
2525

2626
3. Publish views, css & jQuery files to your app:
2727

@@ -35,6 +35,9 @@ Should you wish to publish to `app` folder only selected resources, use these co
3535
- app files: Controllers, route files, Models
3636
`php artisan vendor:publish --provider="Unrulynatives\Helpers\HelpersServiceProvider" --tag=app --force`
3737

38+
- app files: View files
39+
`php artisan vendor:publish --provider="Unrulynatives\Helpers\HelpersServiceProvider" --tag=views --force`
40+
3841
- migration files
3942
`php artisan vendor:publish --provider="Unrulynatives\Helpers\HelpersServiceProvider" --tag=migrations --force`
4043

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "unrulynatives/helpers",
3-
"description": "Snippets, tools, views for Laravel > 5.3 app",
3+
"description": "Snippets, tools, views for Laravel 5.4 app",
44
"authors": [
55
{
66
"name": "Piotr Plebaniak",
Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
<!-- CDNJS FILES tf:b -->
2-
{{-- Html::script('//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/css/bootstrap.min.css') --}}
3-
4-
52
{!! Html::script('//cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js') !!}
6-
{{-- {{ Html::script('https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js') }} --}}
7-
8-
{{-- Html::style('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css') --}}
9-
--}}
103

114
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.3.7/js/tether.min.js"></script>
125
{{ Html::script('https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js') }}
Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
<!-- CDNJS FILES semantic framework -->
2-
<link href=https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css rel=stylesheet>
2+
<link href=https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css rel=stylesheet>
33

4-
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.3/css/bootstrap.min.css" rel="stylesheet">
5-
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.3/js/bootstrap.min.js"></script>
6-
{{-- {!! Html::style('https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.min.css') !!} --}}
7-
8-
{{-- {!! Html::script('https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/js/bootstrap.min.js') !!} --}}
9-
<!-- END CDNJS FILES semantic framework -->
4+
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" rel="stylesheet">
5+
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.6/js/bootstrap.min.js"></script>
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
<!-- LOCAL FILES semantic framework -->
22

3+
{!! Html::style('css/bootstrap-4.0.0-alpha.6.min.css') !!}
34

4-
{!! Html::style('css/bootstrap-4.0.0-alpha.5.min.css') !!}
5-
6-
{!! Html::script('js/bootstrap-4.0.0-alpha.5.min.js') !!}
5+
{!! Html::script('js/bootstrap-4.0.0-alpha.6.min.js') !!}
76

87
{!! Html::style('css/font-awesome.min.css') !!}
98
<!-- END LOCAL FILES semantic framework -->

0 commit comments

Comments
 (0)