Commit eb4aed33 by Francisco Salazar

config file

parent 319a9b7d
...@@ -37,6 +37,12 @@ public function productsResource() ...@@ -37,6 +37,12 @@ public function productsResource()
php artisan vendor:publish --provider="Onestartup\ProductResource\ProductResourceServiceProvider" php artisan vendor:publish --provider="Onestartup\ProductResource\ProductResourceServiceProvider"
``` ```
- run command for publish config file
```php
php artisan vendor:publish --tag=config
```
- run serv - run serv
```php ```php
......
...@@ -34,7 +34,9 @@ class ProductResourceServiceProvider extends ServiceProvider ...@@ -34,7 +34,9 @@ class ProductResourceServiceProvider extends ServiceProvider
$this->publishes([ $this->publishes([
__DIR__.'/assets' => public_path('vendor/onestartup/product_resource/assets'), __DIR__.'/assets' => public_path('vendor/onestartup/product_resource/assets'),
], 'public'); ], 'public');
$this->publishes([
__DIR__.'/config/product_resources.php' => config_path('product_resources.php'),
], 'config');
} }
...@@ -50,6 +52,6 @@ class ProductResourceServiceProvider extends ServiceProvider ...@@ -50,6 +52,6 @@ class ProductResourceServiceProvider extends ServiceProvider
$this->app->make('Onestartup\ProductResource\Controller\CategoryController'); $this->app->make('Onestartup\ProductResource\Controller\CategoryController');
$this->app->make('Onestartup\ProductResource\Controller\ProductController'); $this->app->make('Onestartup\ProductResource\Controller\ProductController');
$this->app->make('Onestartup\ProductResource\Controller\ExtraFieldController'); $this->app->make('Onestartup\ProductResource\Controller\ExtraFieldController');
$this->mergeConfigFrom( __DIR__.'/config/product_resources.php', 'product_resources');
} }
} }
<?php
return [
"slug_product_resource" => "recursos",
"product-index" => [
"pagination" => 12,
"otros" => 3
],
"product-show" => [
"otros" => 3
],
];
\ No newline at end of file
...@@ -16,12 +16,12 @@ class ProductController extends Controller ...@@ -16,12 +16,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(12); $products = $category->products()->where('active', true)->paginate(config("product_resources.product-index.pagination"));
} else { } else {
$products = Product::where('active', true)->paginate(12); $products = Product::where('active', true)->paginate(config("product_resources.product-index.pagination"));
} }
$otros = Product::where('active', true)->inRandomOrder()->take(3)->get(); $otros = Product::where('active', true)->inRandomOrder()->take(config("product_resources.product-index.otros"))->get();
$categories = Category::where('active', true)->get(); $categories = Category::where('active', true)->get();
//$products; //$products;
...@@ -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)->inRandomOrder()->take(config("product_resources.product-show.otros"))->get();
$categories = Category::all(); $categories = Category::all();
......
...@@ -32,6 +32,6 @@ Route::group(['middleware' => ['web', 'auth', 'is_admin']], function(){ ...@@ -32,6 +32,6 @@ Route::group(['middleware' => ['web', 'auth', 'is_admin']], function(){
}); });
Route::group(['middleware' => ['web']], function(){ Route::group(['middleware' => ['web']], function(){
Route::get(env('SLUG_PRODUCTSRESOURCE').'/{slug}', 'Onestartup\ProductResource\Controller\ProductController@show')->name('show.product_resource'); Route::get(config("product_resources.slug_product_resource").'/{slug}', 'Onestartup\ProductResource\Controller\ProductController@show')->name('show.product_resource');
Route::get(env('SLUG_PRODUCTSRESOURCE'), 'Onestartup\ProductResource\Controller\ProductController@index')->name('main.product_resource'); Route::get(config("product_resources.slug_product_resource"), 'Onestartup\ProductResource\Controller\ProductController@index')->name('main.product_resource');
}); });
...@@ -6,5 +6,5 @@ $vendorDir = dirname(dirname(__FILE__)); ...@@ -6,5 +6,5 @@ $vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir); $baseDir = dirname($vendorDir);
return array( return array(
'Onestartup\\Product\\' => array($baseDir . '/src'), 'Onestartup\\ProductResource\\' => array($baseDir . '/src'),
); );
...@@ -9,12 +9,12 @@ class ComposerStaticInit7173633b0cb420d97a2e8a09a0590ba0 ...@@ -9,12 +9,12 @@ class ComposerStaticInit7173633b0cb420d97a2e8a09a0590ba0
public static $prefixLengthsPsr4 = array ( public static $prefixLengthsPsr4 = array (
'O' => 'O' =>
array ( array (
'Onestartup\\Product\\' => 19, 'Onestartup\\ProductResource\\' => 27,
), ),
); );
public static $prefixDirsPsr4 = array ( public static $prefixDirsPsr4 = array (
'Onestartup\\Product\\' => 'Onestartup\\ProductResource\\' =>
array ( array (
0 => __DIR__ . '/../..' . '/src', 0 => __DIR__ . '/../..' . '/src',
), ),
......
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