Commit 0309860f by Francisco Salazar

config file for products

parent 17432700
...@@ -32,6 +32,11 @@ class ProductServiceProvider extends ServiceProvider ...@@ -32,6 +32,11 @@ class ProductServiceProvider extends ServiceProvider
__DIR__.'/views/public' => resource_path('views/vendor/onestartup/product'), __DIR__.'/views/public' => resource_path('views/vendor/onestartup/product'),
]); ]);
// Allow your user to publish the config
$this->publishes([
__DIR__.'/config/product.php' => config_path('product.php'),
], 'config');
} }
...@@ -46,6 +51,6 @@ class ProductServiceProvider extends ServiceProvider ...@@ -46,6 +51,6 @@ class ProductServiceProvider extends ServiceProvider
$this->app->make('Onestartup\Product\Controller\AdminProductController'); $this->app->make('Onestartup\Product\Controller\AdminProductController');
$this->app->make('Onestartup\Product\Controller\CategoryController'); $this->app->make('Onestartup\Product\Controller\CategoryController');
$this->app->make('Onestartup\Product\Controller\ProductController'); $this->app->make('Onestartup\Product\Controller\ProductController');
$this->mergeConfigFrom( __DIR__.'/config/product.php', 'product');
} }
} }
<?php
return [
"slug_products" => "productos",
"slug_category" => "categoria",
"slug_subcategory" => "subcategoria",
"product-index" => [
"pagination" => 25,
"otros" => 6,
],
"product-show" => [
"otros" => 6,
],
"product-bycategory" => [
"pagination" => 15,
"otros" => 6
],
"product-bysubcategory" => [
"pagination" => 15,
"otros" => 6
],
];
\ No newline at end of file
...@@ -17,12 +17,12 @@ class ProductController extends Controller ...@@ -17,12 +17,12 @@ class ProductController extends Controller
if(isset($request->category)){ if(isset($request->category)){
$category = Category::where('slug', $request->category)->first(); $category = Category::where('slug', $request->category)->first();
$products = $category->products()->where('active', true)->paginate(15); $products = $category->products()->where('active', true)->paginate(config("product.product-index."));
} else { } else {
$products = Product::where('active', true)->paginate(25); $products = Product::where('active', true)->paginate(config("product.product-index.pagination"));
} }
$otros = Product::where('active', true)->inRandomOrder()->take(3)->get(); $otros = Product::where('active', true)->inRandomOrder()->take(config("product.product-index.otros"))->get();
$categories = Category::where('active', true)->get(); $categories = Category::where('active', true)->get();
return view('product-public::list') return view('product-public::list')
...@@ -36,7 +36,7 @@ class ProductController extends Controller ...@@ -36,7 +36,7 @@ class ProductController extends Controller
{ {
$product = Product::where('slug',$slug)->first(); $product = Product::where('slug',$slug)->first();
$otros = $product->category->products()->where('active', true)->take(3)->get(); $otros = $product->category->products()->where('active', true)->where("id", "<>", $product->id)->inRandomOrder()->take(config("product.product-show.otros"))->get();
$categories = Category::all(); $categories = Category::all();
...@@ -60,9 +60,9 @@ class ProductController extends Controller ...@@ -60,9 +60,9 @@ class ProductController extends Controller
public function byCategory($category_slug) public function byCategory($category_slug)
{ {
$category = Category::where('slug', $category_slug)->first(); $category = Category::where('slug', $category_slug)->first();
$products = $category->products()->where('active', true)->paginate(15); $products = $category->products()->where('active', true)->paginate(config("product.product-bycategory.pagination"));
$otros = Product::where('active', true)->inRandomOrder()->take(3)->get(); $otros = Product::where('active', true)->inRandomOrder()->take(config("product.product-bycategory.otros"))->get();
$categories = Category::where('active', true)->get(); $categories = Category::where('active', true)->get();
return view('product-public::category') return view('product-public::category')
...@@ -77,9 +77,9 @@ class ProductController extends Controller ...@@ -77,9 +77,9 @@ class ProductController extends Controller
//return $category_slug . " " .$subcategory_slug; //return $category_slug . " " .$subcategory_slug;
$category = Category::where('slug', $category_slug)->first(); $category = Category::where('slug', $category_slug)->first();
$subcategory = $category->subcategories->where('slug', $subcategory_slug)->first(); $subcategory = $category->subcategories->where('slug', $subcategory_slug)->first();
$products = $subcategory->products()->where('active', true)->paginate(15); $products = $subcategory->products()->where('active', true)->paginate(config("product.product-bysubcategory.pagination"));
$otros = Product::where('active', true)->inRandomOrder()->take(3)->get(); $otros = Product::where('active', true)->inRandomOrder()->take(config("product.product-bycategory.otros"))->get();
$categories = Category::where('active', true)->get(); $categories = Category::where('active', true)->get();
$subcategories = $category->subcategories()->where('active' ,true)->get(); $subcategories = $category->subcategories()->where('active' ,true)->get();
......
...@@ -35,15 +35,15 @@ Route::group(['middleware' => ['web', 'auth', 'is_admin']], function(){ ...@@ -35,15 +35,15 @@ Route::group(['middleware' => ['web', 'auth', 'is_admin']], function(){
}); });
Route::group(['middleware' => ['web']], function(){ Route::group(['middleware' => ['web']], function(){
Route::get(env('SLUG_PRODUCTS').'/{slug}', 'Onestartup\Product\Controller\ProductController@show')->name('show.product'); Route::get(config("product.slug_products").'/{slug}', 'Onestartup\Product\Controller\ProductController@show')->name('show.product');
Route::get(env('SLUG_PRODUCTS'), 'Onestartup\Product\Controller\ProductController@index')->name('main.product'); Route::get(config("product.slug_products"), 'Onestartup\Product\Controller\ProductController@index')->name('main.product');
Route::get(env('SLUG_PRODUCTS_CATEGORY').'/{slug_category}', Route::get(config("product.slug_category").'/{slug_category}',
'Onestartup\Product\Controller\ProductController@byCategory') 'Onestartup\Product\Controller\ProductController@byCategory')
->name('category.product'); ->name('category.product');
Route::get(env('SLUG_PRODUCTS_CATEGORY').'/{slug_category}/{slug_subcategory}', Route::get(config("product.slug_category").'/{slug_category}/{slug_subcategory}',
'Onestartup\Product\Controller\ProductController@bySubCategory') 'Onestartup\Product\Controller\ProductController@bySubCategory')
->name('subcategory.product'); ->name('subcategory.product');
}); });
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment