Commit 3b543d73 by Angel MAS

extras var

parent 023d0319
...@@ -9,7 +9,7 @@ use Yajra\Datatables\Datatables; ...@@ -9,7 +9,7 @@ use Yajra\Datatables\Datatables;
use Onestartup\Product\Model\ProductCategory as Category; use Onestartup\Product\Model\ProductCategory as Category;
use Onestartup\Product\Model\ProductImage as Gallery; use Onestartup\Product\Model\ProductImage as Gallery;
use Onestartup\Product\Model\Product; use Onestartup\Product\Model\Product;
use Onestartup\Product\Model\Variable; use Onestartup\Product\Model\Variable as Variable;
class AdminProductController extends Controller class AdminProductController extends Controller
{ {
......
...@@ -19,7 +19,7 @@ class ProductController extends Controller ...@@ -19,7 +19,7 @@ class ProductController extends Controller
$products = $category->products()->where('active', true)->paginate(15); $products = $category->products()->where('active', true)->paginate(15);
} else { } else {
$products = Product::where('active', true)->paginate(3); $products = Product::where('active', true)->paginate(25);
} }
$otros = Product::where('active', true)->inRandomOrder()->take(3)->get(); $otros = Product::where('active', true)->inRandomOrder()->take(3)->get();
$categories = Category::where('active', true)->get(); $categories = Category::where('active', true)->get();
......
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddExtra11ToProductsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('products', function (Blueprint $table) {
$table->text('extra11')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('products', function (Blueprint $table) {
$table->dropColumn(['extra11']);
});
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddAlias11ToVariablesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('variables', function (Blueprint $table) {
$table->string('alias11', 455)->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('variables', function (Blueprint $table) {
$table->dropColumn(['alias11']);
});
}
}
...@@ -23,6 +23,12 @@ class Product extends Model ...@@ -23,6 +23,12 @@ class Product extends Model
'extra4', 'extra4',
'extra5', 'extra5',
'extra6', 'extra6',
'extra7',
'extra8',
'extra9',
'extra10',
'extra11',
]; ];
......
...@@ -18,6 +18,7 @@ class Variable extends Model ...@@ -18,6 +18,7 @@ class Variable extends Model
'alias7', 'alias7',
'alias8', 'alias8',
'alias9', 'alias9',
'alias10' 'alias10',
'alias11'
]; ];
} }
...@@ -42,4 +42,12 @@ ...@@ -42,4 +42,12 @@
dateFormat: "yy-mm-dd" dateFormat: "yy-mm-dd"
}); });
</script> </script>
@if($variable != null)
@if($variable->alias11 != null)
<script type="text/javascript">
CKEDITOR.replace('extra11', options);
</script>
@endif
@endif
@endsection @endsection
...@@ -113,6 +113,14 @@ ...@@ -113,6 +113,14 @@
dateFormat: "yy-mm-dd" dateFormat: "yy-mm-dd"
}); });
</script> </script>
@if($variable != null)
@if($variable->alias11 != null)
<script type="text/javascript">
CKEDITOR.replace('extra11', options);
</script>
@endif
@endif
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/dropzone/5.4.0/min/dropzone.min.js"></script> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/dropzone/5.4.0/min/dropzone.min.js"></script>
<script type="text/javascript"> <script type="text/javascript">
......
...@@ -149,6 +149,15 @@ ...@@ -149,6 +149,15 @@
</div> </div>
@endif @endif
@if($variable->alias11 != null)
<div class="col-md-12">
<div class="form-group">
{!! Form::label('extra11', $variable->alias11, ['class'=>'control-label'])!!}
{!! Form::textarea('extra11', null, ["class"=>"form-control"]) !!}
</div>
</div>
@endif
@endif @endif
</div> </div>
......
...@@ -60,6 +60,11 @@ ...@@ -60,6 +60,11 @@
{!! Form::text('alias10', null, ["class"=>"form-control"]) !!} {!! Form::text('alias10', null, ["class"=>"form-control"]) !!}
</div> </div>
<div class="form-group">
{!! Form::label('alias11', 'Alias para el campo extra 11') !!}
{!! Form::text('alias11', null, ["class"=>"form-control"]) !!}
</div>
</div> </div>
......
<?php
// autoload.php @generated by Composer
require_once __DIR__ . '/composer/autoload_real.php';
return ComposerAutoloaderInit7173633b0cb420d97a2e8a09a0590ba0::getLoader();
Copyright (c) Nils Adermann, Jordi Boggiano
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished
to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
<?php
// autoload_classmap.php @generated by Composer
$vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
);
<?php
// autoload_namespaces.php @generated by Composer
$vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
);
<?php
// autoload_psr4.php @generated by Composer
$vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
'Onestartup\\Product\\' => array($baseDir . '/src'),
);
<?php
// autoload_real.php @generated by Composer
class ComposerAutoloaderInit7173633b0cb420d97a2e8a09a0590ba0
{
private static $loader;
public static function loadClassLoader($class)
{
if ('Composer\Autoload\ClassLoader' === $class) {
require __DIR__ . '/ClassLoader.php';
}
}
public static function getLoader()
{
if (null !== self::$loader) {
return self::$loader;
}
spl_autoload_register(array('ComposerAutoloaderInit7173633b0cb420d97a2e8a09a0590ba0', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
spl_autoload_unregister(array('ComposerAutoloaderInit7173633b0cb420d97a2e8a09a0590ba0', 'loadClassLoader'));
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
if ($useStaticLoader) {
require_once __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInit7173633b0cb420d97a2e8a09a0590ba0::getInitializer($loader));
} else {
$map = require __DIR__ . '/autoload_namespaces.php';
foreach ($map as $namespace => $path) {
$loader->set($namespace, $path);
}
$map = require __DIR__ . '/autoload_psr4.php';
foreach ($map as $namespace => $path) {
$loader->setPsr4($namespace, $path);
}
$classMap = require __DIR__ . '/autoload_classmap.php';
if ($classMap) {
$loader->addClassMap($classMap);
}
}
$loader->register(true);
return $loader;
}
}
<?php
// autoload_static.php @generated by Composer
namespace Composer\Autoload;
class ComposerStaticInit7173633b0cb420d97a2e8a09a0590ba0
{
public static $prefixLengthsPsr4 = array (
'O' =>
array (
'Onestartup\\Product\\' => 19,
),
);
public static $prefixDirsPsr4 = array (
'Onestartup\\Product\\' =>
array (
0 => __DIR__ . '/../..' . '/src',
),
);
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInit7173633b0cb420d97a2e8a09a0590ba0::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit7173633b0cb420d97a2e8a09a0590ba0::$prefixDirsPsr4;
}, null, ClassLoader::class);
}
}
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