Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
onestartup-blog
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Angel Martin
onestartup-blog
Commits
9f34fce0
Commit
9f34fce0
authored
Jul 30, 2018
by
Francisco Salazar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
archivo de configuracion
parent
312e39db
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
8 deletions
+28
-8
README.md
README.md
+6
-0
BlogServiceProvider.php
src/BlogServiceProvider.php
+4
-1
blog.php
src/config/blog.php
+13
-0
BlogController.php
src/controllers/BlogController.php
+5
-7
No files found.
README.md
View file @
9f34fce0
...
@@ -37,6 +37,12 @@ public function entries()
...
@@ -37,6 +37,12 @@ public function entries()
php
artisan
vendor
:
publish
--
provider
=
"Onestartup\Blog\BlogServiceProvider"
php
artisan
vendor
:
publish
--
provider
=
"Onestartup\Blog\BlogServiceProvider"
```
```
-
run command for publish config file
```
php
php
artisan
vendor
:
publish
--
tag
=
config
```
-
run serv
-
run serv
```
php
```
php
...
...
src/BlogServiceProvider.php
View file @
9f34fce0
...
@@ -32,6 +32,9 @@ class BlogServiceProvider extends ServiceProvider
...
@@ -32,6 +32,9 @@ class BlogServiceProvider extends ServiceProvider
__DIR__
.
'/views/post'
=>
resource_path
(
'views/vendor/onestartup/blog'
),
__DIR__
.
'/views/post'
=>
resource_path
(
'views/vendor/onestartup/blog'
),
]);
]);
$this
->
publishes
([
__DIR__
.
'/config/blog.php'
=>
config_path
(
'blog.php'
),
],
'config'
);
}
}
...
@@ -48,6 +51,6 @@ class BlogServiceProvider extends ServiceProvider
...
@@ -48,6 +51,6 @@ class BlogServiceProvider extends ServiceProvider
$this
->
app
->
make
(
'Onestartup\Blog\Controller\TagCatalogController'
);
$this
->
app
->
make
(
'Onestartup\Blog\Controller\TagCatalogController'
);
$this
->
app
->
make
(
'Onestartup\Blog\Controller\CommentPostController'
);
$this
->
app
->
make
(
'Onestartup\Blog\Controller\CommentPostController'
);
$this
->
app
->
make
(
'Onestartup\Blog\Controller\BlogController'
);
$this
->
app
->
make
(
'Onestartup\Blog\Controller\BlogController'
);
$this
->
mergeConfigFrom
(
__DIR__
.
'/config/blog.php'
,
'blog'
);
}
}
}
}
src/config/blog.php
0 → 100644
View file @
9f34fce0
<?php
return
[
"blog-index"
=>
[
"post-pagination"
=>
15
,
"otros"
=>
3
],
"blog-show"
=>
[
"otros"
=>
3
],
];
\ No newline at end of file
src/controllers/BlogController.php
View file @
9f34fce0
...
@@ -17,19 +17,19 @@ class BlogController extends Controller
...
@@ -17,19 +17,19 @@ class BlogController extends Controller
{
{
if
(
isset
(
$request
->
category
)){
if
(
isset
(
$request
->
category
)){
$category
=
Category
::
where
(
'slug'
,
$request
->
category
)
->
first
();
$category
=
Category
::
where
(
'slug'
,
$request
->
category
)
->
first
();
$posts
=
$category
->
entries
()
->
where
(
'status'
,
1
)
->
orderBy
(
'publication_date'
,
'asc'
)
->
paginate
(
15
);
$posts
=
$category
->
entries
()
->
where
(
'status'
,
1
)
->
orderBy
(
'publication_date'
,
'asc'
)
->
paginate
(
config
(
"blog.blog-index.post-pagination"
)
);
}
elseif
(
isset
(
$request
->
tags
))
{
}
elseif
(
isset
(
$request
->
tags
))
{
$tags
=
explode
(
","
,
$request
->
tags
);
$tags
=
explode
(
","
,
$request
->
tags
);
$posts
=
Entry
::
where
(
'status'
,
1
)
->
where
(
function
(
$query
)
use
(
$tags
)
{
$posts
=
Entry
::
where
(
'status'
,
1
)
->
where
(
function
(
$query
)
use
(
$tags
)
{
for
(
$i
=
0
;
$i
<
count
(
$tags
);
$i
++
){
for
(
$i
=
0
;
$i
<
count
(
$tags
);
$i
++
){
$query
->
orwhere
(
'tags'
,
'like'
,
'%'
.
$tags
[
$i
]
.
'%'
);
$query
->
orwhere
(
'tags'
,
'like'
,
'%'
.
$tags
[
$i
]
.
'%'
);
}
}
})
->
orderBy
(
'publication_date'
,
'asc'
)
->
paginate
(
15
);
})
->
orderBy
(
'publication_date'
,
'asc'
)
->
paginate
(
config
(
"blog.blog-index.post-pagination"
)
);
}
else
{
}
else
{
$posts
=
Entry
::
where
(
'status'
,
1
)
->
orderBy
(
'publication_date'
,
'asc'
)
->
paginate
(
3
);
$posts
=
Entry
::
where
(
'status'
,
1
)
->
orderBy
(
'publication_date'
,
'asc'
)
->
paginate
(
config
(
"blog.blog-index.post-pagination"
)
);
}
}
$otros
=
Entry
::
where
(
'status'
,
1
)
->
inRandomOrder
()
->
take
(
3
)
->
get
();
$otros
=
Entry
::
where
(
'status'
,
1
)
->
inRandomOrder
()
->
take
(
config
(
"blog.blog-index.otros"
)
)
->
get
();
$categories
=
Category
::
where
(
'active'
,
1
)
->
get
();
$categories
=
Category
::
where
(
'active'
,
1
)
->
get
();
return
view
(
'blog-public::list'
)
return
view
(
'blog-public::list'
)
...
@@ -49,7 +49,7 @@ class BlogController extends Controller
...
@@ -49,7 +49,7 @@ class BlogController extends Controller
for
(
$i
=
0
;
$i
<
count
(
$tags
);
$i
++
){
for
(
$i
=
0
;
$i
<
count
(
$tags
);
$i
++
){
$query
->
orwhere
(
'tags'
,
'like'
,
'%'
.
$tags
[
$i
]
.
'%'
);
$query
->
orwhere
(
'tags'
,
'like'
,
'%'
.
$tags
[
$i
]
.
'%'
);
}
}
})
->
take
(
3
)
->
get
();
})
->
where
(
"id"
,
"<>"
,
$post
->
id
)
->
inRandomOrder
()
->
take
(
config
(
"blog.blog-show.otros"
)
)
->
get
();
$categories
=
Category
::
all
();
$categories
=
Category
::
all
();
...
@@ -61,8 +61,6 @@ class BlogController extends Controller
...
@@ -61,8 +61,6 @@ class BlogController extends Controller
return
redirect
(
'no_existe'
);
return
redirect
(
'no_existe'
);
}
}
return
view
(
'blog-public::single'
)
return
view
(
'blog-public::single'
)
->
with
(
'post'
,
$post
)
->
with
(
'post'
,
$post
)
->
with
(
'categories'
,
$categories
)
->
with
(
'categories'
,
$categories
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment