Commit 6a57b023 by Francisco Salazar

Initial commit

parents
# Package shop OneStartup
**onestartup/shop** is a module e-commerce
# Installation
- Run this in the terminal
```php
composer require onestartup/shop
```
- if wish config payments paypal, run this:
```
composer require paypal/rest-api-sdk-php:*
```
- after add the ServiceProvider to the providers array in config/app.php
```php
Onestartup\Shop\ShopServiceProvider::class,
```
- Run migration
```php
php artisan migrate
```
- add next lines to app/User.php
```php
public function productsShop()
{
return $this->hasMany('Onestartup\Shop\Model\ProductShop', 'user_id');
}
```
- run command for publish views
```php
php artisan vendor:publish --provider="Onestartup\Shop\ShopServiceProvider"
```
- run command for publish config file
```php
php artisan vendor:publish --tag=config
```
- run serv
```php
php artisan serve
```
- test in this route how admin user
```php
http://localhost:8000/admin/shop/product
```
- test in this route
```php
http://localhost:8000/productos
```
- add to .env file de keys
```
PK_MERCADO_PAGO=Public key
AC_MERCADO_PAGO=Access token
CLIENT_ID_PAYPAL=cliente id
SECRET_PAYPAL=secret id
PAYPAL_MODE=sandbox
```
- for the search
```
composer require laravel/scout
composer require algolia/algoliasearch-client-php
php artisan vendor:publish --provider="Laravel\Scout\ScoutServiceProvider"
```
- env vars
```
ALGOLIA_APP_ID=YourApplicationID
ALGOLIA_SECRET=YourAdminAPIKey
ALGOLIA_SEARCH=YourSearchOnlyAPIKey
SCOUT_QUEUE=true
```
- run
```
php artisan scout:import 'Onestartup\Shop\Model\ProductShop'
```
# Facturacion
Agregar al archivo database/seeds/DatabaseSeeder.php
```
$this->call(CreateUsoCfdiCatalog::class);
$this->call(CreateUnidadesSeed::class);
$this->call(CreateClavesProductosSeed::class);
```
Correr migraciones y seeders
```
php artisan migrate --seed
```
{
"name": "onestartup/shop",
"description": "store for websites onestartup",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Angel MAS",
"email": "angelmartin.isc@gmail.com"
}
],
"minimum-stability": "dev",
"require": {},
"autoload": {
"psr-4": {
"Onestartup\\Shop\\": "src"
}
}
}
File added
<?php
namespace Onestartup\Shop;
use Illuminate\Support\ServiceProvider;
class ShopServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*
* @return void
*/
public function boot()
{
include __DIR__.'/routes.php';
$this->loadMigrationsFrom(__DIR__.'/migrations');
if (is_dir(base_path() . '/resources/views/vendor/onestartup/shop')) {
$this->loadViewsFrom(base_path() . '/resources/views/vendor/onestartup/shop', 'shop-public');
$this->loadViewsFrom(__DIR__.'/views', 'shop');
} else {
$this->loadViewsFrom(__DIR__.'/views', 'shop');
$this->loadViewsFrom(__DIR__.'/views/public', 'shop-public');
}
$this->publishes([
__DIR__.'/views/public' => resource_path('views/vendor/onestartup/shop'),
]);
$this->publishes([
__DIR__.'/assets' => public_path('vendor/onestartup/shop'),
], 'public');
$this->publishes([
__DIR__.'/config/shop.php' => config_path('shop.php'),
], 'config');
}
/**
* Register the application services.
*
* @return void
*/
public function register()
{
$this->app->make('Onestartup\Shop\Controller\AdminProductController');
$this->app->make('Onestartup\Shop\Controller\CategoryController');
$this->app->make('Onestartup\Shop\Controller\SubCategoryController');
$this->app->make('Onestartup\Shop\Controller\ProductController');
$this->app->make('Onestartup\Shop\Controller\CartController');
$this->app->make('Onestartup\Shop\Controller\ShippingPriceController');
$this->app->make('Onestartup\Shop\Controller\ExtraFieldController');
$this->app->make('Onestartup\Shop\Controller\TagCatalogController');
$this->mergeConfigFrom( __DIR__.'/config/shop.php', 'shop');
}
}
Mercadopago.setPublishableKey('TEST-73a8fe53-17bf-4060-b2b8-a069cc779a11');
$("#form-pagar-mp").submit(function( event ) {
$('.btn-submit').attr('disabled', 'disabled');
swal({
text: "Espera por favor, estamos enviando tu pago...",
imageUrl: "/assets/img/ripple.gif",
showConfirmButton: false,
allowEscapeKey: false,
allowOutsideClick: false,
closeOnConfirm: false,
closeOnCancel: false
});
var $form = $(this);
Mercadopago.createToken($form, mpResponseHandler);
event.preventDefault();
return false;
});
var mpResponseHandler = function(status, response) {
var $form = $('#form-pagar-mp');
if (response.error) {
alert("ocurri&oacute; un error: "+JSON.stringify(response));
console.log(response);
swal.close();
var error = '<div class="alert alert-dismissable alert-danger">'+
'<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>'+
'Haz ingresado valores invalidos: <br>Revisa los datos capturados o intenta con otra tarjeta'+
'</div>';
$("#errors-card").html(error);
$('.btn-submit').removeAttr('disabled');
} else {
var card_token_id = response.id;
$form.append($('<input type="hidden" id="card_token_id" name="card_token_id"/>').val(card_token_id));
//alert("card_token_id: "+card_token_id);
$("#errors-card").html("");
$form.get(0).submit();
}
}
function addEvent(el, eventName, handler){
if (el.addEventListener) {
el.addEventListener(eventName, handler);
} else {
el.attachEvent('on' + eventName, function(){
handler.call(el);
});
}
};
function getBin() {
var ccNumber = document.querySelector('input[data-checkout="cardNumber"]');
return ccNumber.value.replace(/[ .-]/g, '').slice(0, 6);
};
function guessingPaymentMethod(event) {
var bin = getBin();
if (event.type == "keyup") {
if (bin.length >= 6) {
Mercadopago.getPaymentMethod({
"bin": bin
}, setPaymentMethodInfo);
}
} else {
setTimeout(function() {
if (bin.length >= 6) {
Mercadopago.getPaymentMethod({
"bin": bin
}, setPaymentMethodInfo);
}
}, 100);
}
};
function setPaymentMethodInfo(status, response) {
if (status == 200) {
// do somethings ex: show logo of the payment method
var form = document.querySelector('#form-pagar-mp');
if (document.querySelector("input[name=paymentMethodId]") == null) {
var paymentMethod = document.createElement('input');
paymentMethod.setAttribute('name', "paymentMethodId");
paymentMethod.setAttribute('type', "hidden");
paymentMethod.setAttribute('value', response[0].id);
form.appendChild(paymentMethod);
} else {
document.querySelector("input[name=paymentMethodId]").value = response[0].id;
}
}
};
addEvent(document.querySelector('input[data-checkout="cardNumber"]'), 'keyup', guessingPaymentMethod);
addEvent(document.querySelector('input[data-checkout="cardNumber"]'), 'change', guessingPaymentMethod);
$(".coupon").keyup(function(){
var text = this.value;
if (text.length > 3) {
$.get( "/get/coupon", { total: $(this).data('total'), coupon: text } )
.done(function( data ) {
$(".reponse_coupon")
.text(data.msg);
if (data.valid) {
$(".amount_discount")
.html(' - descuento de' + data.amount + '<br> = '+data.total);
$('.coupon').val(text);
} else {
$(".amount_discount")
.text('');
}
});
}
});
<?php
return [
"slug-shop" => "tienda",
"billing_enabled"=>false,
"slug-shop-category" => "categoria",
"tags-enable" => false,
"subcategory-enable" => false,
"product-index" => [
"pagination" => 15,
"otros" => 3
],
"product-show" => [
"otros" => 3
],
"product-by-category" => [
"pagination" => 15,
"otros" => 3
],
];
\ No newline at end of file
<?php
namespace Onestartup\Shop\Controller;
use Illuminate\Http\Request;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use Yajra\Datatables\Datatables;
use Onestartup\Shop\Model\ProductCategoryShop as Category;
use Onestartup\Shop\Requests\RequestCategory;
class CategoryController extends Controller
{
/**
* Display a listing of the resource.
* @return Response
*/
public function index()
{
$categories = Category::paginate(25);
return view('shop::category.index')
->with('categories', $categories);
}
/**
* Store a newly created resource in storage.
* @param Request $request
* @return Response
*/
public function store(RequestCategory $request)
{
$category = new Category($request->all());
if (isset($request->portada)) {
$file = $request->file('portada');
$nombre = $file->getClientOriginalName();
$nombre_file = str_replace(' ', '_', $nombre);
$ubicacion_donde_guarda ='shop/product/categories/'.$nombre_file;
\Storage::disk('local')->put($ubicacion_donde_guarda, \File::get($file));
$category->cover = $ubicacion_donde_guarda;
}
$category->save();
return redirect()
->back()
->with('message_success', 'Categoria añadida correctamente');
}
/**
* Show the form for editing the specified resource.
* @return Response
*/
public function edit($id)
{
$category = Category::find($id);
return view('shop::category.edit')
->with('category', $category);
}
/**
* Update the specified resource in storage.
* @param Request $request
* @return Response
*/
public function update(RequestCategory $request, $id)
{
$category = Category::find($id);
$category->fill($request->all());
if (isset($request->portada) && $request->portada != null ) {
$file = $request->file('portada');
$nombre = $file->getClientOriginalName();
$nombre_file = str_replace(' ', '_', $nombre);
$ubicacion_donde_guarda ='shop/product/categories/'.$nombre_file;
\Storage::disk('local')->put($ubicacion_donde_guarda, \File::get($file));
$category->cover = $ubicacion_donde_guarda;
}
$category->save();
return redirect()
->back()
->with('message_success', 'Categoria actualizado correctamente');
}
/**
* Remove the specified resource from storage.
* @return Response
*/
public function destroy($id)
{
$category = Category::find($id);
$category->delete();
return redirect()
->back()
->with('message_danger', 'Categoria eliminada correctamente');
}
public function deleteCover($id)
{
$category = Category::find($id);
$category->cover = null;
$category->save();
return redirect()
->back()
->with('message_success', 'Imagen eliminada correctamente');
}
}
<?php
namespace Onestartup\Shop\Controller;
use Illuminate\Http\Request;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use Yajra\Datatables\Datatables;
use Onestartup\Shop\Model\CategoriaSat as Category;
use Onestartup\Shop\Model\Unidad;
use Onestartup\Shop\Model\ClavesProducto;
use Onestartup\Shop\Requests\RequestCategorySat;
class CategorySatController extends Controller
{
/**
* Display a listing of the resource.
* @return Response
*/
public function index()
{
$categories = Category::paginate(25);
$unidades = Unidad::select(
\DB::raw("CONCAT(clave,'-',nombre) AS nombre"),'clave')
->pluck('nombre', 'clave');
return view('shop::categorysat.index')
->with('categories', $categories)
->with('unidades', $unidades);
}
/**
* Store a newly created resource in storage.
* @param Request $request
* @return Response
*/
public function store(RequestCategorySat $request)
{
$category = new Category($request->all());
$category->save();
return redirect()
->back()
->with('message_success', 'Categoria añadida correctamente');
}
/**
* Show the form for editing the specified resource.
* @return Response
*/
public function edit($id)
{
$category = Category::find($id);
$unidades = Unidad::select(
\DB::raw("CONCAT(clave,'-',nombre) AS nombre"),'clave')
->pluck('nombre', 'clave');
return view('shop::categorysat.edit')
->with('category', $category)
->with('unidades', $unidades);
}
/**
* Update the specified resource in storage.
* @param Request $request
* @return Response
*/
public function update(RequestCategorySat $request, $id)
{
$category = Category::find($id);
$category->fill($request->all());
$category->save();
return redirect()
->back()
->with('message_success', 'Categoría actualizado correctamente');
}
/**
* Remove the specified resource from storage.
* @return Response
*/
public function destroy($id)
{
$category = Category::find($id);
$category->delete();
return redirect()
->back()
->with('message_danger', 'Categoria eliminada correctamente');
}
public function deleteCover($id)
{
$category = Category::find($id);
$category->save();
return redirect()
->back()
->with('message_success', 'Imagen eliminada correctamente');
}
public function apiClaveProd(Request $request)
{
$claves = ClavesProducto::where('descripcion', 'LIKE','%'.$request->q.'%')->get();
return $claves;
}
}
<?php
namespace Onestartup\Shop\Controller;
use Illuminate\Http\Request;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use Yajra\Datatables\Datatables;
use Onestartup\Shop\Model\DiscountCoupon as Coupon;
use Onestartup\Shop\Requests\RequestCoupon;
class DiscountCouponController extends Controller
{
/**
* Display a listing of the resource.
* @return Response
*/
public function index()
{
$coupons = Coupon::paginate(25);
return view('shop::coupon.index')
->with('coupons', $coupons);
}
/**
* Store a newly created resource in storage.
* @param Request $request
* @return Response
*/
public function store(RequestCoupon $request)
{
$coupon = new Coupon($request->all());
$coupon->save();
return redirect()
->back()
->with('message_success', 'Cupon de descuento agregado correctamente');
}
/**
* Show the form for editing the specified resource.
* @return Response
*/
public function edit($id)
{
$coupon = Coupon::find($id);
return view('shop::coupon.edit')
->with('coupon', $coupon);
}
/**
* Update the specified resource in storage.
* @param Request $request
* @return Response
*/
public function update(RequestCoupon $request, $id)
{
$coupon = Coupon::find($id);
$coupon->fill($request->all());
$coupon->save();
return redirect()
->back()
->with('message_success', 'Cupon de descuento actualizado correctamente');
}
/**
* Remove the specified resource from storage.
* @return Response
*/
public function destroy($id)
{
$coupon = Coupon::find($id);
$coupon->delete();
return redirect()
->back()
->with('message_danger', 'Cupon de descuento eliminado correctamente');
}
}
<?php
namespace Onestartup\Shop\Controller;
use Illuminate\Http\Request;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use Yajra\Datatables\Datatables;
use Onestartup\Shop\Model\ExtraField as Extra;
use Onestartup\Shop\Requests\RequestExtraFields;
class ExtraFieldController extends Controller
{
/**
* Display a listing of the resource.
* @return Response
*/
public function index()
{
$extras = Extra::paginate(10);
$variables = [
'extra1'=>'Extra 1',
'extra2'=>'Extra 2',
'extra3'=>'Extra 3',
'extra4'=>'Extra 4',
'extra5'=>'Extra 5',
'extra6'=>'Extra 6',
'extra7'=>'Extra 7',
'extra8'=>'Extra 8',
'extra9'=>'Extra 9',
'extra10'=>'Extra 10'
];
return view('shop::extra.index')
->with('variables', $variables)
->with('extras', $extras);
}
/**
* Store a newly created resource in storage.
* @param Request $request
* @return Response
*/
public function store(RequestExtraFields $request)
{
//$values = implode(",", $request->values);
//return array_combine( explode(",", $values), explode(",", $values));
$extra = Extra::where('variable', $request->variable)->first();
if ($extra != null) {
return redirect()
->back()
->withInput()
->with('message_warning', "No se pudo agregar el registro: La variable $request->variable ya existe");
}
$extra = new Extra($request->all());
if ($request->type == 'select') {
if ($request->values != null) {
$extra->values = implode(",", $request->values);
} else {
return redirect()
->back()
->withInput()
->with('message_warning', 'No agregaste los valores para el select');
}
}
$extra->save();
return redirect()
->back()
->with('message_success', 'Categoria añadida correctamente');
}
/**
* Show the form for editing the specified resource.
* @return Response
*/
public function edit($id)
{
$extra = Extra::find($id);
$variables = [
'extra1'=>'Extra 1',
'extra2'=>'Extra 2',
'extra3'=>'Extra 3',
'extra4'=>'Extra 4',
'extra5'=>'Extra 5',
'extra6'=>'Extra 6',
'extra7'=>'Extra 7',
'extra8'=>'Extra 8',
'extra9'=>'Extra 9',
'extra10'=>'Extra 10'
];
return view('shop::extra.edit')
->with('extra', $extra)
->with('variables', $variables);
}
/**
* Update the specified resource in storage.
* @param Request $request
* @return Response
*/
public function update(RequestExtraFields $request, $id)
{
$extra = Extra::find($id);
$extra->fill($request->all());
if ($request->type == 'select') {
if ($request->values != null) {
$extra->values = implode(",", $request->values);
} else {
return redirect()
->back()
->withInput()
->with('message_warning', 'No agregaste los valores para el select');
}
}
$extra->save();
return redirect()
->back()
->with('message_success', 'Variable actualizado correctamente');
}
/**
* Remove the specified resource from storage.
* @return Response
*/
public function destroy($id)
{
$extra = Extra::find($id);
$extra->delete();
return redirect()
->back()
->with('message_danger', 'Variable eliminada correctamente');
}
public function deleteCover($id)
{
$category = Category::find($id);
$category->cover = null;
$category->save();
return redirect()
->back()
->with('message_success', 'Imagen eliminada correctamente');
}
}
<?php
namespace Onestartup\Shop\Controller;
use Illuminate\Http\Request;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use Yajra\Datatables\Datatables;
use Onestartup\Shop\Model\ProductShop as Product;
use Onestartup\Shop\Model\ProductCategoryShop as Category;
class ProductController extends Controller
{
public function index(Request $request)
{
if(isset($request->category)){
$category = Category::where('slug', $request->category)->first();
$products = $category->products()->where('active', true)->paginate(config("shop.product-index.pagination"));
} else {
$products = Product::where('active', true)->paginate(config("shop.product-index.pagination"));
}
$otros = Product::where('active', true)->inRandomOrder()->take(config("shop.product-index.otros"))->get();
$categories = Category::where('active', true)->get();
return view('shop-public::list')
->with('categories', $categories)
->with('otros', $otros)
->with('products', $products);
}
public function show($slug)
{
$product = Product::where('slug',$slug)->first();
$categories = Category::all();
if ($product != null) {
if (!$product->active) {
return redirect('inactivo');
}
} else {
return redirect('no_existe');
}
$otros = $product->category->products()->where('active', true)->where('id', '<>', $product->id)->inRandomOrder()->take(config("shop.product-show.otros"))->get();
return view('shop-public::single')
->with('product', $product)
->with('categories', $categories)
->with('otros', $otros);
}
public function shoByCategory($slug)
{
$category = Category::where('active', true)
->where('slug', $slug)
->first();
$products = $category->products()->where('active', true)->paginate(config("shop.product-by-category.pagination"));
$otros = Product::where('active', true)->inRandomOrder()->take(config("shop.product-by-category.otros"))->get();
$categories = Category::where('active', true)->get();
return view('shop-public::list')
->with('category', $category)
->with('categories', $categories)
->with('otros', $otros)
->with('products', $products);
}
}
<?php
namespace Onestartup\Shop\Controller;
use Illuminate\Http\Request;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use Yajra\Datatables\Datatables;
use Onestartup\Shop\Model\ShippingPrice as Shipping;
use Onestartup\Shop\Requests\RequestShipping;
class ShippingPriceController extends Controller
{
/**
* Display a listing of the resource.
* @return Response
*/
public function index()
{
$shippings = Shipping::paginate(25);
return view('shop::shipping.index')
->with('shippings', $shippings);
}
/**
* Store a newly created resource in storage.
* @param Request $request
* @return Response
*/
public function store(RequestShipping $request)
{
$shipping = new Shipping($request->all());
$shipping->save();
return redirect()
->back()
->with('message_success', 'Forma añadida correctamente');
}
/**
* Show the form for editing the specified resource.
* @return Response
*/
public function edit($id)
{
$shipping = Shipping::find($id);
return view('shop::shipping.edit')
->with('shipping', $shipping);
}
/**
* Update the specified resource in storage.
* @param Request $request
* @return Response
*/
public function update(RequestShipping $request, $id)
{
$shipping = Shipping::find($id);
$shipping->fill($request->all());
$shipping->save();
return redirect()
->back()
->with('message_success', 'Forma actualizada correctamente');
}
/**
* Remove the specified resource from storage.
* @return Response
*/
public function destroy($id)
{
$shipping = Shipping::find($id);
$shipping->delete();
return redirect()
->back()
->with('message_danger', 'Forma eliminada correctamente');
}
}
<?php
namespace Onestartup\Shop\Controller;
use Illuminate\Http\Request;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use Onestartup\Shop\Model\ProductCategoryShop as Category;
use Onestartup\Shop\Model\ProductSubCategoryShop as SubCategory;
use Onestartup\Shop\Model\ProductShop as Product;
use Onestartup\Shop\Requests\RequestSubCategory;
class SubCategoryController extends Controller{
public function index(Request $request, $category_id){
$category = Category::find($category_id);
if($request->ajax()){
return $subcategories = $category->subcategories()->get();
}
$subcategories = $category->subcategories()->paginate(30);
$products = Product::pluck('name', 'id');
return view("shop::subcategory.index")
->with("products", $products)
->with("subcategories", $subcategories)
->with("category", $category);
}
public function edit($category_id, $id){
$category = Category::find($category_id);
$subcategory = SubCategory::where("category_id", $category_id)->find($id);
$products = Product::pluck('name', 'id');
return view("shop::subcategory.edit")
->with('products', $products)
->with("subcategory", $subcategory)
->with("category", $category);
}
public function store(RequestSubCategory $request, $category_id){
$subcategory = new SubCategory($request->all());
$subcategory->category_id = $category_id;
$subcategory->save();
$subcategory->related_products()->sync($request->related_products);
if (isset($request->portada)) {
$file = $request->file('portada');
$nombre = $file->getClientOriginalName();
$nombre_file = str_replace(' ', '_', $nombre);
$ubicacion_donde_guarda ='shop/subcategories/' . $subcategory->id . '/' .$nombre_file;
\Storage::disk('local')->put($ubicacion_donde_guarda, \File::get($file));
$subcategory->cover = $ubicacion_donde_guarda;
$subcategory->save();
}
return redirect()
->back()
->with('message_success', 'Subcategoría añadida correctamente.');
}
public function update(RequestSubCategory $request, $category_id, $id){
$subcategory = SubCategory::where("category_id", $category_id)->find($id);
$subcategory->fill($request->all());
$subcategory->save();
$subcategory->related_products()->sync($request->related_products);
if (isset($request->portada) && $request->portada != null ) {
$file = $request->file('portada');
$nombre = $file->getClientOriginalName();
$nombre_file = str_replace(' ', '_', $nombre);
$ubicacion_donde_guarda ='product/subcategories/'. $subcategory->id . '/'. $nombre_file;
\Storage::disk('local')->put($ubicacion_donde_guarda, \File::get($file));
$subcategory->cover = $ubicacion_donde_guarda;
$subcategory->save();
}
return redirect()
->back()
->with('message_success', 'Subcategoría actualizada correctamente.');
}
public function destroy($category_id, $id){
$subcategory = SubCategory::where("category_id", $category_id)->find($id);
$subcategory->delete();
return redirect()
->back()
->with('message_danger', 'Subcategoría eliminada correctamente.');
}
public function deleteCover($id)
{
$category = SubCategory::find($id);
$category->cover = null;
$category->save();
return redirect()
->back()
->with('message_success', 'Imagen eliminada correctamente.');
}
}
\ No newline at end of file
<?php
namespace Onestartup\Shop\Controller;
use Illuminate\Http\Request;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use Yajra\Datatables\Datatables;
use Onestartup\Shop\Model\ProductTag as TagCatalog;
use Onestartup\Shop\Requests\RequestTags;
class TagCatalogController extends Controller
{
/**
* Display a listing of the resource.
* @return Response
*/
public function index()
{
$tags = TagCatalog::paginate(25);
return view('shop::tags.index')
->with('tags', $tags);
}
/**
* Store a newly created resource in storage.
* @param Request $request
* @return Response
*/
public function store(RequestTags $request)
{
$tag = new TagCatalog($request->all());
$tag->save();
return redirect()
->back()
->with('message_success', 'Categoria añadida correctamente');
}
/**
* Show the form for editing the specified resource.
* @return Response
*/
public function edit($id)
{
$tag = TagCatalog::find($id);
return view('shop::tags.edit')
->with('tag', $tag);
}
/**
* Update the specified resource in storage.
* @param Request $request
* @return Response
*/
public function update(RequestTags $request, $id)
{
$tag = TagCatalog::find($id);
$tag->fill($request->all());
$tag->save();
return redirect()
->back()
->with('message_success', 'Tag actualizado correctamente');
}
/**
* Remove the specified resource from storage.
* @return Response
*/
public function destroy($id)
{
$tag = TagCatalog::find($id);
$tag->delete();
return redirect()
->back()
->with('message_danger', 'Tag eliminado correctamente');
}
}
<?php
namespace Onestartup\Shop\DataTables;
use Onestartup\Shop\Model\ClientShop as Client;
use Yajra\DataTables\Services\DataTable;
class ClientDataTable extends DataTable
{
/**
* Build DataTable class.
*
* @param mixed $query Results from query() method.
* @return \Yajra\DataTables\DataTableAbstract
*/
public function dataTable($query)
{
return datatables($query);
//->addColumn('action', function(Interested $interested) {
// return "<a href='".route('crm.show',$interested->id)."'>Ver Detalle</a>";
// });
//->addColumn('action', 'interested.action');
}
/**
* Get query source of dataTable.
*
* @param \App\Interested $model
* @return \Illuminate\Database\Eloquent\Builder
*/
public function query(Client $model)
{
return $model->select(['id','name', 'lastname','email', 'phone','created_at'])->orderBy('id', 'desc');
}
/**
* Optional method if you want to use html builder.
*
* @return \Yajra\DataTables\Html\Builder
*/
public function html()
{
return $this->builder()
->columns($this->getColumns())
->parameters([
'dom' => 'Bfrtip',
'buttons' => ['excel', 'csv','reset', 'reload'],
]);
}
/**
* Get columns.
*
* @return array
*/
protected function getColumns()
{
return [
'id',
'name',
'lastname',
'phone',
'email',
'created_at'
];
}
/**
* Get filename for export.
*
* @return string
*/
protected function filename()
{
return 'clients' . date('YmdHis');
}
}
<?php
namespace Onestartup\Shop\DataTables;
use Onestartup\Shop\Model\SaleShop as Sale;
use Yajra\DataTables\Services\DataTable;
class OrderDataTable extends DataTable
{
/**
* Build DataTable class.
*
* @param mixed $query Results from query() method.
* @return \Yajra\DataTables\DataTableAbstract
*/
public function dataTable($query)
{
return datatables($query)
->addColumn('cliente', function(Sale $sale) {
return 'Nombre: <b>'.$sale->client->name." ".$sale->client->lastname.'</b>'.
'<br>Teléfono: <b>'.$sale->client->phone.'</b>'.
'<br>Correo: <b>'.$sale->client->email.'</b>';
})
->addColumn('orden', function(Sale $sale) {
$estado = "";
$html = "";
$facturacion = $sale->facturacion != null ? $sale->facturacion : 'N/A';
$enviar_factura = "<br><b><span class='label warning'>Datos no proporcionados aún</span></b>";
if ($sale->status == 0) {
$estado = "<span class='label danger'>Cancelado</span>";
}
if ($sale->status == 1) {
$estado = "<span class='label warning'>Pendiente</span>";
}
if ($sale->status == 2) {
$estado = "<span class='label success'>Pagado</span>";
}
if ($sale->status == 3) {
$estado = "<span class='label primary'>En proceso</span>";
}
if ($sale->status == 4) {
$estado = "<span class='label danger'>Reembolsado</span>";
}
if ($sale->client->shipping != null) {
$html = "Estado: <b>$estado</b><br>Tipo: <b>$sale->payment_type</b> <br>Transaccion:<br><b>$sale->transaction_id</b><br>Envio: <b>".$sale->client->shipping->shipping_price->name."</b>";
} else {
$html = "Estado: <b>$estado</b><br>Tipo: <b>$sale->payment_type</b> <br>Transaccion:<br><b>$sale->transaction_id</b><br>Envio: <b>Recojer en la tienda</b>";
}
$html = $html."<br>Requiere factura: <b><span class='label info'>".$facturacion."</span></b>";
if ($facturacion == "Si") {
if ($sale->billing()->count() > 0) {
$billing = $sale->billing;
$enviar_factura = "<br><b><span class='label warning'>Factura pendiente</span></b>";
if ($billing->status == 1 ) {
$enviar_factura = "<br><b><span class='label success'>Factura enviada</span></b>";
}
if ($billing->status == 2 ) {
$enviar_factura = "<br><b><span class='label danger'>Factura cancelada</span></b>";
}
}
$html = $html.$enviar_factura;
}
return $html;
})
->addColumn('action', function (Sale $sale){
return "<a href='".route('admin-shop-client.orders.show',$sale->id)."'>Ver Detalle</a>";
})
->rawColumns(['orden', 'action', 'cliente']);
}
/**
* Get query source of dataTable.
*
* @param \App\Interested $model
* @return \Illuminate\Database\Eloquent\Builder
*/
public function query(Sale $model)
{
return $model->select(['id', 'client_id', 'status', 'payment_type','transaction_id', 'total', 'facturacion','created_at'])->where('status', '!=', 0)->orderBy('id', 'desc');
}
/**
* Optional method if you want to use html builder.
*
* @return \Yajra\DataTables\Html\Builder
*/
public function html()
{
return $this->builder()
->columns($this->getColumns())
->parameters([
'dom' => 'Bfrtip',
'pageLength' => 20,
'buttons' => ['excel', 'csv','reset', 'reload'],
]);
}
/**
* Get columns.
*
* @return array
*/
protected function getColumns()
{
return [
'id',
'cliente',
'orden',
'created_at',
'action'
];
}
/**
* Get filename for export.
*
* @return string
*/
protected function filename()
{
return 'orders' . date('YmdHis');
}
}
<?php
namespace Onestartup\Shop\DataTables;
use Onestartup\Shop\Model\ProductShop as Product;
use Yajra\DataTables\Services\DataTable;
class StockDataTable extends DataTable
{
/**
* Build DataTable class.
*
* @param mixed $query Results from query() method.
* @return \Yajra\DataTables\DataTableAbstract
*/
public function dataTable($query)
{
return datatables($query)
->addColumn('producto', function(Product $product) {
return 'Nombre: <b>'.$product->name.'</b>'.
'<br>Resumen: <b>'.$product->description.'</b>'.
'<br>Fecha de publicación: <b>'.$product->publication_date.'</b>';
})
->addColumn('informacion_venta', function(Product $product) {
$html = "";
$existencia = "";
if (isset($product->infoSale)){
if ($product->infoSale->quantity <= $product->infoSale->reserve_amount) {
$existencia = "<span class='badge danger'>".$product->infoSale->quantity."</span>";
} else {
$existencia = "<span class='badge primary'>".$product->infoSale->quantity."</span>";
}
$html = "Precio venta: <b>".money_format('%(#10n', $product->infoSale->sale_price)."</b><br>Precio compra: <b>".money_format('%(#10n', $product->infoSale->purchase_price)."</b><br>Alerta de reserva: <b><span class='badge info'>".$product->infoSale->reserve_amount."</b></span><br>Existencias: $existencia<br>";
}else{
$html = "<b>Sin información de ventas</b>";
}
return $html;
})
->addColumn('action', function (Product $product){
return "<a href='".route('admin.shop.product.edit',$product->id)."'>Editar <i class='fa fa-edit'></i></a>";
})
->filterColumn('producto', function($query, $keyword) {
$query->whereRaw("name like ?", ["%{$keyword}%"]);
})
->rawColumns(['producto', 'action', 'informacion_venta']);
}
/**
* Get query source of dataTable.
*
* @param \App\Interested $model
* @return \Illuminate\Database\Eloquent\Builder
*/
public function query(Product $model)
{
return $model->select([
'id',
'name',
'slug',
'description',
'active',
'publication_date',
'category_id'
])->where('active', true)->orderBy('publication_date', 'desc');
}
/**
* Optional method if you want to use html builder.
*
* @return \Yajra\DataTables\Html\Builder
*/
public function html()
{
return $this->builder()
->columns($this->getColumns())
->parameters([
'dom' => 'Bfrtip',
'pageLength' => 20,
'buttons' => ['excel', 'csv','reset', 'reload'],
]);
}
/**
* Get columns.
*
* @return array
*/
protected function getColumns()
{
return [
'id',
'producto',
'informacion_venta',
'action'
];
}
/**
* Get filename for export.
*
* @return string
*/
protected function filename()
{
return 'orders' . date('YmdHis');
}
}
<?php
namespace Onestartup\Shop\Libs;
use Onestartup\Shop\Model\ProductShop as Product;
use Onestartup\Shop\Model\DiscountCoupon as Coupon;
use Onestartup\Shop\Notifications\StockNotify;
use App\User;
class Util
{
public function countCart()
{
$contador = 0;
if (\Session::has('cart')) {
$cart = \Session::get('cart');
foreach ($cart as $item) {
$contador = $contador + $item->quantity;
}
}
return $contador;
}
public function stock_change($sale, $old)
{
$products = $sale->products;
$admin = User::first();
if ($sale->status == 2) {
foreach ($products as $product) {
$aux = Product::find($product->id);
$aux->infoSale()->decrement('quantity', $product->pivot->quantity);
$info = $aux->infoSale;
if ($info->quantity <= $info->reserve_amount) {
$admin->notify(new StockNotify($product));
}
}
} else {
if ($old == 2) {
foreach ($products as $product) {
$aux = Product::find($product->id);
$aux->infoSale()->increment('quantity', $product->pivot->quantity);
}
}
}
}
public function getDiscount($sale,$code)
{
$client = $sale->client;
$addres = null;
$cost_shipping = 0;
if ($sale->home_delivery) {
$addres = $client->shipping;
$cost_shipping = $addres->shipping_price->cost;
}
$coupon = Coupon::where('code', $code)->first();
$today = date("Y-m-d");
$descuento = 0;
$total = 0;
$msg = 'Codigo de promoción no valido';
$valid = false;
$data = [];
foreach ($sale->products as $product) {
$aux = $product->pivot->quantity * $product->infoSale->sale_price;
$total += $aux;
}
if ($coupon != null) {
if ($today <= $coupon->expiration) {
if ($total >= $coupon->min_sale) {
if ($coupon->type == 'Efectivo') {
$descuento = $coupon->value;
$msg = 'Tienes un descuento de: '.money_format('%(#10n',$descuento);
$valid = true;
}
if ($coupon->type == 'Porcentaje') {
$descuento = ($coupon->value/100) * $total;
$msg = 'Tienes un descuento de: '.money_format('%(#10n',$descuento);
$valid = true;
}
} else {
$msg = 'Para aplicar este código de descuento tu compra minima debe ser de: '
.money_format('%(#10n',$coupon->min_sale);
}
} else{
$msg = 'Lo sentimos este código de descuento ya expiró :(';
}
}
$data = [
'valid'=>$valid,
'msg'=>$msg,
'amount'=>money_format('%(#10n',$descuento),
'amount_unformated'=>$descuento,
'total'=>money_format('%(#10n', (($total+$cost_shipping)-$descuento)),
'total_unformated'=>($total+$cost_shipping)-$descuento
];
return $data;
}
}
This source diff could not be displayed because it is too large. You can view the blob instead.
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateProductCategoriesShopTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('product_categories_shop', function (Blueprint $table) {
$table->increments('id');
$table->string('name', 355);
$table->string('description', 455)->nullable();
$table->string('cover', 455)->nullable();
$table->boolean('active')->default(true);
$table->string('slug')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('product_categories_shop');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateProductsShopTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('products_shop', function (Blueprint $table) {
$table->increments('id');
$table->string('name', 355);
$table->string('slug', 455);
$table->string('cover', 455)->nullable();
$table->text('description')->nullable();
$table->text('specifications')->nullable();
$table->text('features')->nullable();
$table->boolean('active')->default(true);
$table->date('publication_date')->nullable();
$table->string('extra1', 455)->nullable();
$table->string('extra2', 455)->nullable();
$table->string('extra3', 455)->nullable();
$table->string('extra4', 455)->nullable();
$table->string('extra5', 455)->nullable();
$table->string('extra6', 455)->nullable();
$table->string('extra7', 455)->nullable();
$table->string('extra8', 455)->nullable();
$table->string('extra9', 455)->nullable();
$table->string('extra10', 455)->nullable();
$table->integer('category_id')->unsigned();
$table->foreign('category_id')
->references('id')
->on('product_categories_shop')
->onDelete('cascade');
$table->integer('user_id')->unsigned();
$table->foreign('user_id')
->references('id')
->on('users')
->onDelete('cascade');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('products_shop');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateProductImagesShopTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('product_images_shop', function (Blueprint $table) {
$table->increments('id');
$table->string('path', 455);
$table->string('description', 455)->nullable();
$table->integer('product_id')->unsigned();
$table->foreign('product_id')
->references('id')
->on('products_shop')
->onDelete('cascade');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('product_images_shop');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateExtraFieldsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('extra_fields', function (Blueprint $table) {
$table->increments('id');
$table->string('variable');
$table->string('alias');
$table->string('type');
$table->text('values')->nullable();
$table->boolean('active')->default(true);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('extra_fields');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateClientShopsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('client_shops', function (Blueprint $table) {
$table->increments('id');
$table->string('name', 455);
$table->string('lastname', 455);
$table->string('email', 455);
$table->string('phone');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('client_shops');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateSaleShopsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('sale_shops', function (Blueprint $table) {
$table->increments('id');
$table->string('transaction_id', 455)->nullable();
$table->tinyInteger('status');
$table->float('total');
$table->integer('client_id')->unsigned()->nullable();
$table->foreign('client_id')
->references('id')
->on('client_shops')
->onDelete('cascade');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('sale_shops');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateDetailShopsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('detail_shops', function (Blueprint $table) {
$table->increments('id');
$table->integer('quantity');
$table->integer('product_id')->unsigned();
$table->foreign('product_id')
->references('id')
->on('products_shop')
->onDelete('cascade');
$table->integer('sale_id')->unsigned();
$table->foreign('sale_id')
->references('id')
->on('sale_shops')
->onDelete('cascade');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('detail_shops');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateProductShopInfosTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('product_shop_infos', function (Blueprint $table) {
$table->increments('id');
$table->string('unity', 355);
$table->float('purchase_price')->nullable();
$table->float('sale_price');
$table->integer('quantity')->nullable();
$table->integer('reserve_amount')->nullable();
$table->integer('product_id')->unsigned();
$table->foreign('product_id')
->references('id')
->on('products_shop')
->onDelete('cascade');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('product_shop_infos');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateShippingPricesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('shipping_prices', function (Blueprint $table) {
$table->increments('id');
$table->string('name', 355);
$table->float('cost');
$table->boolean('active')->default(true);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('shipping_prices');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateShippingAddresTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('shipping_addres', function (Blueprint $table) {
$table->increments('id');
$table->string('cp');
$table->string('calle');
$table->string('numero');
$table->string('colonia');
$table->string('ciudad');
$table->string('estado');
$table->integer('client_id')->unsigned()->nullable();
$table->foreign('client_id')
->references('id')
->on('client_shops')
->onDelete('cascade');
$table->integer('shipping_price_id')->unsigned()->nullable();
$table->foreign('shipping_price_id')
->references('id')
->on('shipping_prices')
->onDelete('cascade');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('shipping_addres');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddPaymentTypeToSaleShopsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('sale_shops', function (Blueprint $table) {
$table->string('payment_type')->nullable();
$table->string('shipping_status')->default('Pendiente');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('sale_shops', function (Blueprint $table) {
$table->dropColumn('payment_type');
$table->dropColumn('shipping_status');
});
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateOrderTrackingsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('order_trackings', function (Blueprint $table) {
$table->increments('id');
$table->string('type', 355);
$table->string('detail', 555);
$table->integer('sale_id')->unsigned();
$table->foreign('sale_id')->references('id')->on('sale_shops');
$table->integer('user_id')->unsigned();
$table->foreign('user_id')->references('id')->on('users');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('order_trackings');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddReferencesToShippingTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('shipping_addres', function (Blueprint $table) {
$table->string('referencias')->nullable();
$table->string('facturacion')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('shipping_addres', function (Blueprint $table) {
$table->dropColumn('referencias');
$table->dropColumn('facturacion');
});
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateDiscountCouponsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('discount_coupons', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('code')->unique();
$table->string('type');
$table->string('value');
$table->float('min_sale')->default(1);
$table->date('expiration');
$table->boolean('active')->default(true);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('discount_coupons');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddCouponToSaleShopTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('sale_shops', function (Blueprint $table) {
$table->string('coupon')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('sale_shops', function (Blueprint $table) {
$table->dropColumn('coupon');
});
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateBillingsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('billings', function (Blueprint $table) {
$table->increments('id');
$table->string('razon');
$table->string('rfc');
$table->string('correo');
$table->string('cp')->nullable();
$table->string('calle')->nullable();
$table->string('numero')->nullable();
$table->string('colonia')->nullable();
$table->string('ciudad')->nullable();
$table->string('estado')->nullable();
$table->tinyInteger('status')->default(0);
$table->integer('sale_id')->unsigned();
$table->foreign('sale_id')->references('id')->on('sale_shops');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('billings');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddShippmentOptionToClientShopsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('sale_shops', function (Blueprint $table) {
$table->boolean('home_delivery')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('sale_shops', function (Blueprint $table) {
$table->dropColumn('home_delivery');
});
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AlterTableShippingAddres extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('shipping_addres', function (Blueprint $table) {
$table->dropColumn('facturacion');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('shipping_addres', function (Blueprint $table) {
$table->string('facturacion')->nullable();
});
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AlterTableSaleShopsAddField extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('sale_shops', function (Blueprint $table) {
$table->string('facturacion')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('sale_shops', function (Blueprint $table) {
$table->dropColumn('facturacion');
});
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateUsoCfdisTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('uso_cfdis', function (Blueprint $table) {
$table->increments('id');
$table->string('clave_uso');
$table->string('descripcion');
$table->string('fisica')->default('SI');
$table->string('moral');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('uso_cfdis');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddUuidToBillingsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('billings', function (Blueprint $table) {
$table->string('uso_cfdi')->nullable();
$table->string('folio')->nullable();
$table->string('uuid', 355)->nullable();
$table->string('pdf', 355)->nullable();
$table->string('xml', 355)->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('billings', function (Blueprint $table) {
$table->dropColumn('uso_cfdi');
$table->dropColumn('folio');
$table->dropColumn('uuid');
$table->dropColumn('pdf');
$table->dropColumn('xml');
});
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateUnidadsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('unidades', function (Blueprint $table) {
$table->increments('id');
$table->string('clave');
$table->string('nombre');
$table->string('tipo');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('unidades');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateClavesProductosTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('claves_productos', function (Blueprint $table) {
$table->increments('id');
$table->string('clave');
$table->string('descripcion', 355);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('claves_productos');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateCategoriaSatsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('categorias_sat', function (Blueprint $table) {
$table->increments('id');
$table->string('nombre');
$table->string('clave_producto');
$table->string('clave_unidad');
$table->string('unidad');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('categorias_sat');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddCategorySatIdToShopProductsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('products_shop', function (Blueprint $table) {
$table->integer('category_sat_id')->unsigned()->index()->nullable();
$table->foreign('category_sat_id')->references('id')->on('categorias_sat')->onDelete('cascade');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('products_shop', function (Blueprint $table) {
$table->dropForeign(['category_sat_id']);
$table->dropColumn('category_sat_id');
});
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddFormaPagoToBillingTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('billings', function (Blueprint $table) {
$table->string('forma_pago');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('billings', function (Blueprint $table) {
$table->dropColumn('forma_pago');
});
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateConfiguracionFacturasTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('configuracion_facturas', function (Blueprint $table) {
$table->increments('id');
$table->string('regimen_fiscal');
$table->string('lugar_expedicion');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('configuracion_facturas');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateExtraSaleInfosTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('extra_sale_infos', function (Blueprint $table) {
$table->increments('id');
$table->string('extra1', 455)->nullable();
$table->string('extra2', 455)->nullable();
$table->string('extra3', 455)->nullable();
$table->string('extra4', 455)->nullable();
$table->string('extra5', 455)->nullable();
$table->string('extra6', 455)->nullable();
$table->string('extra7', 455)->nullable();
$table->string('extra8', 455)->nullable();
$table->string('extra9', 455)->nullable();
$table->string('extra10', 455)->nullable();
$table->integer('sale_id')->unsigned();
$table->foreign('sale_id')->references('id')->on('sale_shops');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('extra_sale_infos');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateVariableExtrasTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('variable_extras', function (Blueprint $table) {
$table->increments('id');
$table->string('alias1', 455)->nullable();
$table->string('alias2', 455)->nullable();
$table->string('alias3', 455)->nullable();
$table->string('alias4', 455)->nullable();
$table->string('alias5', 455)->nullable();
$table->string('alias6', 455)->nullable();
$table->string('alias7', 455)->nullable();
$table->string('alias8', 455)->nullable();
$table->string('alias9', 455)->nullable();
$table->string('alias10', 455)->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('variable_extras');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateProductSubcategoriesShopTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('product_subcategories_shop', function (Blueprint $table) {
$table->increments('id');
$table->string('name', 355);
$table->string('description', 455)->nullable();
$table->string('cover', 455)->nullable();
$table->boolean('active')->default(true);
$table->string('slug')->nullable();
$table->integer('category_id')->unsigned();
$table->foreign('category_id')
->references('id')
->on('product_categories_shop')
->onDelete('cascade');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('product_subcategories_shop');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddSubcategoryToProductShopTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('products_shop', function($table) {
$table->integer('subcategory_id')->unsigned()->nullable();
$table->foreign('subcategory_id')->references('id')->on('product_subcategories_shop')->onDelete('cascade');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('products_shop', function($table) {
$table->dropForeign(['subcategory_id']);
$table->dropColumn('subcategory_id');
});
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateProductTagsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('product_tags', function (Blueprint $table) {
$table->increments('id');
$table->string('description');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('product_tags');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateProductProductTagsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('product_product_tags', function (Blueprint $table) {
$table->increments('id');
$table->integer('product_id')->unsigned();
$table->integer('tag_id')->unsigned();
$table->foreign('product_id')->references('id')->on('products_shop')->onDelete('cascade');
$table->foreign('tag_id')->references('id')->on('product_tags')->onDelete('cascade');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('product_product_tags');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateRelatedProductsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('related_products', function (Blueprint $table) {
$table->increments('id');
$table->integer('product_id')->unsigned();
$table->foreign('product_id')
->references('id')
->on('products_shop')
->onDelete('cascade');
$table->integer('subcategory_id')->unsigned();
$table->foreign('subcategory_id')
->references('id')
->on('product_subcategories_shop')
->onDelete('cascade');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('related_products');
}
}
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddTiempoEntregaToCategoriasShop extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('product_categories_shop', function (Blueprint $table) {
$table->string('tiempo_entrega')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('product_categories_shop', function (Blueprint $table) {
$table->dropColumn('tiempo_entrega');
});
}
}
<?php
namespace Onestartup\Shop\Model;
use Illuminate\Database\Eloquent\Model;
class Billing extends Model
{
protected $table = 'billings';
protected $fillable = [
'razon',
'rfc',
'correo',
'cp',
'calle',
'numero',
'colonia',
'ciudad',
'estado',
'sale_id',
'uso_cfdi',
'folio',
'uuid',
'pdf',
'xml',
'forma_pago'
];
public function sale()
{
return $this->belongsTo('Onestartup\Shop\Model\SaleShop', 'sale_id');
}
}
<?php
namespace Onestartup\Shop\Model;
use Illuminate\Database\Eloquent\Model;
class CategoriaSat extends Model
{
protected $table = 'categorias_sat';
protected $fillable = [
'nombre',
'clave_producto',
'clave_unidad',
'unidad'
];
public function products()
{
return $this->hasMany('Onestartup\Shop\Model\ProductShop', 'category_sat_id');
}
}
<?php
namespace Onestartup\Shop\Model;
use Illuminate\Database\Eloquent\Model;
class ClavesProducto extends Model
{
protected $table = 'claves_productos';
protected $fillable = [
'clave',
'descripcion',
];
}
<?php
namespace Onestartup\Shop\Model;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Notifications\Notifiable;
class ClientShop extends Model
{
use Notifiable;
protected $table = 'client_shops';
protected $fillable = [
'name',
'lastname',
'email',
'phone'
];
public function shipping()
{
return $this->hasOne('Onestartup\Shop\Model\ShippingAddres', 'client_id');
}
public function sales()
{
return $this->hasMany('Onestartup\Shop\Model\SaleShop', 'client_id');
}
}
<?php
namespace Onestartup\Shop\Model;
use Illuminate\Database\Eloquent\Model;
class ConfiguracionFactura extends Model
{
protected $table = 'configuracion_facturas';
protected $fillable = [
'regimen_fiscal',
'lugar_expedicion'
];
}
<?php
namespace Onestartup\Shop\Model;
use Illuminate\Database\Eloquent\Model;
class DetailShop extends Model
{
protected $table = "detail_shops";
protected $fillable = ['product_id', 'sale_id', 'quantity'];
public function sale()
{
return $this->belongsTo('Onestartup\Shop\Model\SaleShop', 'sale_id');
}
public function product()
{
return $this->belongsTo('Onestartup\Shop\Model\ProductShop', 'product_id');
}
}
<?php
namespace Onestartup\Shop\Model;
use Illuminate\Database\Eloquent\Model;
class DiscountCoupon extends Model
{
protected $table = "discount_coupons";
protected $fillable = [
'name',
'code',
'type',
'value',
'active',
'min_sale',
'expiration'
];
}
<?php
namespace Onestartup\Shop\Model;
use Illuminate\Database\Eloquent\Model;
class ExtraField extends Model
{
protected $table = 'extra_fields';
protected $fillable = ['variable', 'alias', 'type', 'values', 'active'];
}
<?php
namespace Onestartup\Shop\Model;
use Illuminate\Database\Eloquent\Model;
class ExtraSaleInfo extends Model
{
protected $table = 'extra_sale_infos';
protected $fillable = [
'extra1',
'extra2',
'extra3',
'extra4',
'extra5',
'extra6',
'extra7',
'extra8',
'extra9',
'extra10',
'sale_id'
];
public function sale()
{
return $this->belongsTo(SaleShop::class, 'sale_id');
}
}
<?php
namespace Onestartup\Shop\Model;
use Illuminate\Database\Eloquent\Model;
class OrderTracking extends Model
{
protected $table = 'order_trackings';
protected $fillable = [
'type',
'detail',
'sale_id',
'user_id'
];
public function user()
{
return $this->belongsTo('App\User', 'user_id');
}
public function sale()
{
return $this->belongsTo('Onestartup\Shop\Model\SaleShop', 'sale_id');
}
}
<?php
namespace Onestartup\Shop\Model;
use Illuminate\Database\Eloquent\Model;
class ProductCategoryShop extends Model
{
protected $table = 'product_categories_shop';
protected $fillable = [
'name',
'description',
'cover',
'active',
'slug',
'tiempo_entrega'
];
public function products()
{
return $this->hasMany('Onestartup\Shop\Model\ProductShop', 'category_id');
}
public function subcategories(){
return $this->hasMany('Onestartup\Shop\Model\ProductSubCategoryShop', 'category_id');
}
}
<?php
namespace Onestartup\Shop\Model;
use Illuminate\Database\Eloquent\Model;
class ProductImageShop extends Model
{
protected $table = 'product_images_shop';
protected $fillable = [
'path',
'description',
'product_id'
];
public function product()
{
return $this->belongsTo('Onestartup\Shop\Model\ProductShop', 'product_id');
}
}
<?php
namespace Onestartup\Shop\Model;
use Illuminate\Database\Eloquent\Model;
class ProductProductTag extends Model
{
protected $table = 'product_product_tags';
protected $fillable = ['product_id', 'tag_id'];
public function products(){
$this->belongsTo("Onestartup\Shop\Model\ProductShop");
}
public function tags(){
$this->belongsTo("Onestartup\Shop\Model\ProductTag");
}
}
<?php
namespace Onestartup\Shop\Model;
use Illuminate\Database\Eloquent\Model;
use Laravel\Scout\Searchable;
class ProductShop extends Model
{
use Searchable;
protected $table = 'products_shop';
protected $fillable = [
'name',
'slug',
'description',
'specifications',
'features',
'active',
'publication_date',
'category_id',
'subcategory_id',
'category_sat_id',
'cover',
'extra1',
'extra2',
'extra3',
'extra4',
'extra5',
'extra6',
'extra7',
'extra8',
'extra9',
'extra10',
];
public function category()
{
return $this->belongsTo('Onestartup\Shop\Model\ProductCategoryShop', 'category_id');
}
public function user()
{
return $this->belongsTo('App\User', 'user_id');
}
public function images()
{
return $this->hasMany('Onestartup\Shop\Model\ProductImageShop', 'product_id');
}
public function infoSale()
{
return $this->hasOne('Onestartup\Shop\Model\ProductShopInfo', 'product_id');
}
public function items()
{
return $this->hasMany('Onestartup\Shop\Model\DetailShop', 'product_id');
}
public function categoria_sat()
{
return $this->belongsTo('Onestartup\Shop\Model\CategoriaSat', 'category_sat_id');
}
public function tags(){
return $this->belongsToMany('Onestartup\Shop\Model\ProductTag', 'product_product_tags', 'product_id', 'tag_id');
}
public function subcategories_related(){
return $this->belongsToMany('Onestartup\Shop\Model\ProductSubCategoryShop', 'related_products', 'product_id', 'subcategory_id');
}
public function details_sale()
{
return $this->hasMany('Onestartup\Shop\Model\DetailShop', 'product_id');
}
}
<?php
namespace Onestartup\Shop\Model;
use Illuminate\Database\Eloquent\Model;
class ProductShopInfo extends Model
{
protected $table = 'product_shop_infos';
protected $fillable = [
'unity',
'purchase_price',
'sale_price',
'quantity',
'reserve_amount',
'product_id'
];
public function product()
{
return $this->belongsTo('Onestartup\Shop\Model\ProductShop', 'product_id');
}
}
<?php
namespace Onestartup\Shop\Model;
use Illuminate\Database\Eloquent\Model;
class ProductSubCategoryShop extends Model
{
protected $table = 'product_subcategories_shop';
protected $fillable = [
'name',
'description',
'cover',
'active',
'slug',
'category_id'
];
public function category()
{
return $this->belongsTo('Onestartup\Shop\Model\ProductCategoryShop', 'category_id');
}
public function products(){
return $this->hasMany('Onestartup\Shop\Model\ProductShop', 'subcategory_id');
}
public function related_products(){
return $this->belongsToMany('Onestartup\Shop\Model\ProductShop', 'related_products', 'subcategory_id', 'product_id');
}
}
<?php
namespace Onestartup\Shop\Model;
use Illuminate\Database\Eloquent\Model;
class ProductTag extends Model
{
protected $table = 'product_tags';
protected $fillable = ["description"];
public function products(){
return $this->belongsToMany('Onestartup\Shop\Model\ProductShop', 'product_product_tags', 'tag_id', 'product_id');
}
}
<?php
namespace Onestartup\Shop\Model;
use Illuminate\Database\Eloquent\Model;
class RelatedProducts extends Model
{
protected $table = 'related_products';
protected $fillable = ["product_id", "subcategory_id"];
public function products(){
return $this->belongsToMany('Onestartup\Shop\Model\ProductShop', 'product_id');
}
public function subcategories(){
return $this->hasMany('Onestartup\Shop\Model\ProductSubCategoryShop', 'subcategory_id');
}
}
<?php
namespace Onestartup\Shop\Model;
use Illuminate\Database\Eloquent\Model;
class SaleShop extends Model
{
protected $table = 'sale_shops';
protected $fillable = [
'status',
'total',
'client_id',
'transaction_id',
'payment_type',
'shipping_status',
'coupon',
'facturacion',
'home_delivery'
];
public function client()
{
return $this->belongsTo('Onestartup\Shop\Model\ClientShop', 'client_id');
}
public function items()
{
return $this->hasMany('Onestartup\Shop\Model\DetailShop', 'sale_id');
}
public function tracking_sales()
{
return $this->hasMany('Onestartup\Shop\Model\OrderTracking', 'sale_id');
}
public function products()
{
return $this->belongsToMany(
'Onestartup\Shop\Model\ProductShop',
'detail_shops',
'sale_id',
'product_id')
->withPivot('quantity');
}
public function billing()
{
return $this->hasOne('Onestartup\Shop\Model\Billing', 'sale_id');
}
public function info_extra()
{
return $this->hasOne(ExtraSaleInfo::class, 'sale_id');
}
}
<?php
namespace Onestartup\Shop\Model;
use Illuminate\Database\Eloquent\Model;
class ShippingAddres extends Model
{
protected $table = 'shipping_addres';
protected $fillable = [
'cp',
'calle',
'numero',
'colonia',
'ciudad',
'estado',
'referencias',
'client_id',
'shipping_price_id'
];
public function client()
{
return $this->belongsTo('Onestartup\Shop\Model\ClientShop', 'client_id');
}
public function shipping_price()
{
return $this->belongsTo('Onestartup\Shop\Model\ShippingPrice', 'shipping_price_id');
}
}
<?php
namespace Onestartup\Shop\Model;
use Illuminate\Database\Eloquent\Model;
class ShippingPrice extends Model
{
protected $table = 'shipping_prices';
protected $fillable = ['name', 'cost', 'active'];
public function shippings()
{
return $this->hasMany('Onestartup\Shop\Model\ShippingAddres', 'shipping_price_id');
}
}
<?php
namespace Onestartup\Shop\Model;
use Illuminate\Database\Eloquent\Model;
class Unidad extends Model
{
protected $table = 'unidades';
protected $fillable = [
'clave',
'nombre',
'tipo'
];
}
<?php
namespace Onestartup\Shop\Model;
use Illuminate\Database\Eloquent\Model;
class UsoCfdi extends Model
{
protected $table = 'uso_cfdis';
protected $fillable = ['clave_uso', 'descripcion', 'fisica', 'moral'];
}
<?php
namespace Onestartup\Shop\Model;
use Illuminate\Database\Eloquent\Model;
class VariableExtra extends Model
{
protected $table = 'variable_extras';
protected $fillable = [
'alias1',
'alias2',
'alias3',
'alias4',
'alias5',
'alias6',
'alias7',
'alias8',
'alias9',
'alias10',
'alias11'
];
}
<?php
namespace Onestartup\Shop\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Onestartup\Shop\Model\ClientShop as Client;
class PaymentAcordarClient extends Notification
{
use Queueable;
protected $tipo;
protected $client;
/**
* Create a new notification instance.
*
* @return void
*/
public function __construct($tipo, Client $client)
{
$this->tipo = $tipo;
$this->client = $client;
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return ['mail'];
}
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toMail($notifiable)
{
return (new MailMessage)
->greeting('¡Hola!')
->subject('Orden: Acordar con el vendedor '.env('APP_NAME'))
//->replyTo($this->interested->email, $this->interested->name)
->line('Un cliente elijió la opcion de acordar con el vendedor')
->line('Datos del cliente:')
->line('Nombre: '.$this->client->name.' '.$this->client->lastname)
->line('Telefono: '.$this->client->phone)
->line('Correo: '.$this->client->email);
}
/**
* Get the array representation of the notification.
*
* @param mixed $notifiable
* @return array
*/
public function toArray($notifiable)
{
return [
//
];
}
}
<?php
namespace Onestartup\Shop\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Onestartup\Shop\Model\ClientShop as Client;
class PaymentClient extends Notification
{
use Queueable;
protected $tipo;
protected $client;
/**
* Create a new notification instance.
*
* @return void
*/
public function __construct($tipo, Client $client)
{
$this->tipo = $tipo;
$this->client = $client;
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return ['mail'];
}
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toMail($notifiable)
{
return (new MailMessage)
->greeting('¡Hola!')
->subject('Ficha pago en efectivo en '.env('APP_NAME'))
//->replyTo($this->interested->email, $this->interested->name)
->line('Se ha generado una ficha de deposito en efectivo')
->line('Tipo de ficha: '.$this->tipo )
->line('Datos del cliente:')
->line('Nombre: '.$this->client->name.' '.$this->client->lastname)
->line('Telefono: '.$this->client->phone)
->line('Correo: '.$this->client->email);
}
/**
* Get the array representation of the notification.
*
* @param mixed $notifiable
* @return array
*/
public function toArray($notifiable)
{
return [
//
];
}
}
<?php
namespace Onestartup\Shop\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Onestartup\Shop\Model\ClientShop as Client;
class PaymentClientCard extends Notification
{
use Queueable;
protected $tipo;
protected $client;
protected $status;
/**
* Create a new notification instance.
*
* @return void
*/
public function __construct(Client $client, $tipo, $status)
{
$this->tipo = $tipo;
$this->client = $client;
$this->status = $status;
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return ['mail'];
}
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toMail($notifiable)
{
return (new MailMessage)
->greeting('¡Hola!')
->subject('Pago con tarjeta en '.env('APP_NAME'))
//->replyTo($this->interested->email, $this->interested->name)
->line('Se ha generado un pago con tarjeta')
->line('Tipo de tarjeta: '.$this->tipo )
->line('Estatus de la transacción: '.$this->status )
->line('Datos del cliente:')
->line('Nombre: '.$this->client->name.' '.$this->client->lastname)
->line('Telefono: '.$this->client->phone)
->line('Correo: '.$this->client->email);
}
/**
* Get the array representation of the notification.
*
* @param mixed $notifiable
* @return array
*/
public function toArray($notifiable)
{
return [
//
];
}
}
<?php
namespace Onestartup\Shop\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Onestartup\Shop\Model\SaleShop as Order;
use Onestartup\Shop\Model\ClientShop as Client;
use Onestartup\Shop\Model\ShippingAddres as Shipping;
use Onestartup\Shop\Libs\Util;
use Onestartup\Shop\Model\VariableExtra as Variable;
class ResumenOrder extends Notification
{
use Queueable;
protected $order;
protected $products;
protected $client;
protected $shipping;
protected $promo = null;
protected $additional = null;
protected $variable = null;
/**
* Create a new notification instance.
*
* @return void
*/
public function __construct(Order $order, $products, Client $client, $shipping)
{
$this->order = $order;
$this->products = $products;
$this->shipping = $shipping;
$this->client = $client;
$this->additional = $order->info_extra;
$this->variable = Variable::first();
if ($this->order->coupon != null) {
$util = new Util();
$this->promo = $util->getDiscount($order, $order->coupon);
}
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return ['mail'];
}
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toMail($notifiable)
{
return (new MailMessage)
->subject('Resumen de compra')
->markdown('shop::mail.resumen.order', [
'order' => $this->order,
'products' => $this->products,
'client' => $this->client,
'shipping' => $this->shipping,
'promo' => $this->promo,
'additional' => $this->additional,
'variable' => $this->variable
]);
}
/**
* Get the array representation of the notification.
*
* @param mixed $notifiable
* @return array
*/
public function toArray($notifiable)
{
return [
//
];
}
}
<?php
namespace Onestartup\Shop\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Onestartup\Shop\Model\ProductShop as Product;
class StockNotify extends Notification
{
use Queueable;
protected $product;
/**
* Create a new notification instance.
*
* @return void
*/
public function __construct(Product $product)
{
$this->product = $product;
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return ['mail'];
}
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toMail($notifiable)
{
return (new MailMessage)
->greeting('Hola apreciable administrador')
->subject('Verificar existencia de producto: '.$this->product->name)
->line('El producto '.$this->product->name.' esta agotado o proximo a agotarse')
->line('Verifica la existencia del producto y actualiza su información')
->action('Ver producto', route('admin.shop.product.edit', $this->product->id));
}
/**
* Get the array representation of the notification.
*
* @param mixed $notifiable
* @return array
*/
public function toArray($notifiable)
{
return [
//
];
}
}
<?php
namespace Onestartup\Shop\Requests;
use Illuminate\Foundation\Http\FormRequest;
class RequestCategory extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
if ($this->get("_method") == "PUT" || $this->get("_method") == "PATCH"){
$slug = 'required|max:255|unique:product_categories_shop,slug,'.$this->route("category");
}else{
$slug = 'required|max:255|unique:product_categories_shop,slug';
}
return [
'name' => 'required|max:355',
'slug' => $slug,
'description'=> 'max:455',
'active' => 'required|boolean',
'portada' => 'image'
];
}
}
\ No newline at end of file
<?php
namespace Onestartup\Shop\Requests;
use Illuminate\Foundation\Http\FormRequest;
class RequestCategorySat extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'nombre' => 'required|max:255',
'clave_producto' => 'required|max:255',
'clave_unidad'=> 'required|max:255',
'unidad' => 'required|max:255',
];
}
}
\ No newline at end of file
<?php
namespace Onestartup\Shop\Requests;
use Illuminate\Foundation\Http\FormRequest;
class RequestClient extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'name' => 'required|max:455',
'lastname' => 'required|max:455',
'email'=> 'required|email|max:455',
'phone' => 'required|max:255',
'home_delivery' => 'required|boolean',
'facturacion' => 'max:255',
//Envio
'cp' => "required_if:home_delivery,1|max:255",
'calle' => "required_if:home_delivery,1|max:255",
'numero' => "required_if:home_delivery,1|max:255",
'colonia' => "required_if:home_delivery,1|max:255",
'ciudad' => "required_if:home_delivery,1|max:255",
'estado' => "required_if:home_delivery,1|max:255",
//Adicional
'extra1' => 'max:455',
'extra2' => 'max:455',
'extra3' => 'max:455',
'extra4' => 'max:455',
'extra5' => 'max:455',
'extra6' => 'max:455',
'extra7' => 'max:455',
'extra8' => 'max:455',
'extra9' => 'max:455',
'extra10' => 'max:455',
];
}
}
\ No newline at end of file
<?php
namespace Onestartup\Shop\Requests;
use Illuminate\Foundation\Http\FormRequest;
class RequestConfigFactura extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'regimen_fiscal' => 'required|max:255',
'lugar_expedicion' => 'required|numeric',
];
}
}
\ No newline at end of file
<?php
namespace Onestartup\Shop\Requests;
use Illuminate\Foundation\Http\FormRequest;
class RequestCoupon extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'name' => 'required|max:255',
'code' => 'required|max:255',
'type' => 'required|max:255',
'value' => 'required|numeric',
'min_sale' => 'required|numeric',
'expiration' => 'required',
'active' => 'required|boolean'
];
}
}
\ No newline at end of file
<?php
namespace Onestartup\Shop\Requests;
use Illuminate\Foundation\Http\FormRequest;
class RequestExtraFields extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'variable' => 'required|max:255',
'alias' => 'required|max:255',
'type' => 'required|max:255',
'active' => 'required|boolean'
];
}
}
\ No newline at end of file
<?php
namespace Onestartup\Shop\Requests;
use Illuminate\Foundation\Http\FormRequest;
class RequestGallery extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'file.*' => 'image'
];
}
}
\ No newline at end of file
<?php
namespace Onestartup\Shop\Requests;
use Illuminate\Foundation\Http\FormRequest;
class RequestProduct extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
if ($this->get("_method") == "PUT" || $this->get("_method") == "PATCH"){
$slug = 'required|max:455|unique:products_shop,slug,'.$this->route("product");
}else{
$slug = 'required|max:455|unique:products_shop,slug';
}
return [
'name' => 'required|max:355',
'slug' => $slug,
'description' => 'required',
'active' => 'required|boolean',
'publication_date' => 'required',
'category_id' => 'required|integer',
//'tags.*' => '',
'extra1' => 'max:455',
'extra2' => 'max:455',
'extra3' => 'max:455',
'extra4' => 'max:455',
'extra5' => 'max:455',
'extra6' => 'max:455',
'extra7' => 'max:455',
'extra8' => 'max:455',
'extra9' => 'max:455',
'extra10' => 'max:455',
];
}
}
\ No newline at end of file
<?php
namespace Onestartup\Shop\Requests;
use Illuminate\Foundation\Http\FormRequest;
class RequestProductInfo extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'unity' => 'required|max:355',
'purchase_price' => 'required|numeric',
'sale_price' => 'required|numeric',
'quantity' => 'required|integer',
'reserve_amount' => 'required|integer',
'product_id' => 'required|integer'
];
}
}
\ No newline at end of file
<?php
namespace Onestartup\Shop\Requests;
use Illuminate\Foundation\Http\FormRequest;
class RequestShipping extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'name' => 'required|max:355',
'active' => 'required|boolean',
'cost' => 'required|numeric'
];
}
}
\ No newline at end of file
<?php
namespace Onestartup\Shop\Requests;
use Illuminate\Foundation\Http\FormRequest;
class RequestSubCategory extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
if ($this->get("_method") == "PUT" || $this->get("_method") == "PATCH"){
$slug = 'required|max:255|unique:product_subcategories_shop,slug,'.$this->route("subcategory");
}else{
$slug = 'required|max:255|unique:product_subcategories_shop,slug';
}
return [
'name' => 'required|max:355',
'slug' => $slug,
'description'=> 'max:455',
'active' => 'required|boolean',
'portada' => 'image'
];
}
}
\ No newline at end of file
<?php
namespace Onestartup\Shop\Requests;
use Illuminate\Foundation\Http\FormRequest;
class RequestTags extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'description' => 'required|max:255',
];
}
}
\ No newline at end of file
This diff is collapsed. Click to expand it.
This source diff could not be displayed because it is too large. You can view the blob instead.
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