Removed author information from every class
This commit is contained in:
parent
42c16cbbfd
commit
10db1838f2
|
|
@ -5,12 +5,6 @@ namespace Webkul\API\Http\Controllers\Shop;
|
||||||
use Webkul\Customer\Repositories\CustomerAddressRepository;
|
use Webkul\Customer\Repositories\CustomerAddressRepository;
|
||||||
use Webkul\API\Http\Resources\Customer\CustomerAddress as CustomerAddressResource;
|
use Webkul\API\Http\Resources\Customer\CustomerAddress as CustomerAddressResource;
|
||||||
|
|
||||||
/**
|
|
||||||
* Address controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class AddressController extends Controller
|
class AddressController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -9,12 +9,6 @@ use Webkul\API\Http\Resources\Checkout\Cart as CartResource;
|
||||||
use Cart;
|
use Cart;
|
||||||
use Webkul\Customer\Repositories\WishlistRepository;
|
use Webkul\Customer\Repositories\WishlistRepository;
|
||||||
|
|
||||||
/**
|
|
||||||
* Cart controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CartController extends Controller
|
class CartController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -6,12 +6,6 @@ use Illuminate\Http\Request;
|
||||||
use Webkul\Category\Repositories\CategoryRepository;
|
use Webkul\Category\Repositories\CategoryRepository;
|
||||||
use Webkul\API\Http\Resources\Catalog\Category as CategoryResource;
|
use Webkul\API\Http\Resources\Catalog\Category as CategoryResource;
|
||||||
|
|
||||||
/**
|
|
||||||
* Category controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CategoryController extends Controller
|
class CategoryController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -15,12 +15,6 @@ use Webkul\Sales\Repositories\OrderRepository;
|
||||||
use Illuminate\Support\Str;
|
use Illuminate\Support\Str;
|
||||||
use Cart;
|
use Cart;
|
||||||
|
|
||||||
/**
|
|
||||||
* Checkout controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CheckoutController extends Controller
|
class CheckoutController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,6 @@ namespace Webkul\API\Http\Controllers\Shop;
|
||||||
|
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
|
|
||||||
/**
|
|
||||||
* Core controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CoreController extends Controller
|
class CoreController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -6,13 +6,6 @@ use Illuminate\Support\Facades\Event;
|
||||||
use Webkul\Customer\Repositories\CustomerRepository;
|
use Webkul\Customer\Repositories\CustomerRepository;
|
||||||
use Webkul\Customer\Repositories\CustomerGroupRepository;
|
use Webkul\Customer\Repositories\CustomerGroupRepository;
|
||||||
|
|
||||||
/**
|
|
||||||
* Customer controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @author Vivek Sharma <viveksh047@webkul.com> @vivek-webkul
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CustomerController extends Controller
|
class CustomerController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\API\Http\Controllers\Shop;
|
||||||
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
|
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
|
||||||
use Illuminate\Support\Facades\Password;
|
use Illuminate\Support\Facades\Password;
|
||||||
|
|
||||||
/**
|
|
||||||
* Forgot Password controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class ForgotPasswordController extends Controller
|
class ForgotPasswordController extends Controller
|
||||||
{
|
{
|
||||||
use SendsPasswordResetEmails;
|
use SendsPasswordResetEmails;
|
||||||
|
|
|
||||||
|
|
@ -7,12 +7,6 @@ use Illuminate\Http\Response;
|
||||||
use Webkul\Product\Repositories\ProductRepository;
|
use Webkul\Product\Repositories\ProductRepository;
|
||||||
use Webkul\API\Http\Resources\Catalog\Product as ProductResource;
|
use Webkul\API\Http\Resources\Catalog\Product as ProductResource;
|
||||||
|
|
||||||
/**
|
|
||||||
* Product controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class ProductController extends Controller
|
class ProductController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,6 @@ namespace Webkul\API\Http\Controllers\Shop;
|
||||||
|
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
|
|
||||||
/**
|
|
||||||
* Resource Controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class ResourceController extends Controller
|
class ResourceController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -6,12 +6,6 @@ use Illuminate\Http\Request;
|
||||||
use Webkul\Product\Repositories\ProductReviewRepository;
|
use Webkul\Product\Repositories\ProductReviewRepository;
|
||||||
use Webkul\API\Http\Resources\Catalog\ProductReview as ProductReviewResource;
|
use Webkul\API\Http\Resources\Catalog\ProductReview as ProductReviewResource;
|
||||||
|
|
||||||
/**
|
|
||||||
* Review controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class ReviewController extends Controller
|
class ReviewController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -6,12 +6,6 @@ use Illuminate\Support\Facades\Event;
|
||||||
use Webkul\Customer\Repositories\CustomerRepository;
|
use Webkul\Customer\Repositories\CustomerRepository;
|
||||||
use Webkul\API\Http\Resources\Customer\Customer as CustomerResource;
|
use Webkul\API\Http\Resources\Customer\Customer as CustomerResource;
|
||||||
|
|
||||||
/**
|
|
||||||
* Session controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class SessionController extends Controller
|
class SessionController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -9,12 +9,6 @@ use Webkul\API\Http\Resources\Customer\Wishlist as WishlistResource;
|
||||||
use Webkul\API\Http\Resources\Checkout\Cart as CartResource;
|
use Webkul\API\Http\Resources\Checkout\Cart as CartResource;
|
||||||
use Cart;
|
use Cart;
|
||||||
|
|
||||||
/**
|
|
||||||
* Wishlist controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class WishlistController extends Controller
|
class WishlistController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -6,12 +6,6 @@ use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
use Webkul\Customer\Repositories\CustomerRepository;
|
use Webkul\Customer\Repositories\CustomerRepository;
|
||||||
|
|
||||||
/**
|
|
||||||
* Address Data Grid class
|
|
||||||
*
|
|
||||||
* @author Vivek Sharma <viveksh047@webkul.com>
|
|
||||||
* @copyright 2019 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class AddressDataGrid extends DataGrid
|
class AddressDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* AttributeDataGrid class
|
|
||||||
*
|
|
||||||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class AttributeDataGrid extends DataGrid
|
class AttributeDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'id';
|
protected $index = 'id';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* AttributeFamilyDataGrid Class
|
|
||||||
*
|
|
||||||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class AttributeFamilyDataGrid extends DataGrid
|
class AttributeFamilyDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'id';
|
protected $index = 'id';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* CMSPagesDataGrid class
|
|
||||||
*
|
|
||||||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CMSPageDataGrid extends DataGrid
|
class CMSPageDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'id';
|
protected $index = 'id';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* CartRuleCouponDataGrid class
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CartRuleCouponDataGrid extends DataGrid
|
class CartRuleCouponDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'id';
|
protected $index = 'id';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* Cart Rule DataGrid class
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CartRuleDataGrid extends DataGrid
|
class CartRuleDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'id';
|
protected $index = 'id';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* Catalog Rule DataGrid class
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CatalogRuleDataGrid extends DataGrid
|
class CatalogRuleDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'id';
|
protected $index = 'id';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* CategoryDataGrid Class
|
|
||||||
*
|
|
||||||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CategoryDataGrid extends DataGrid
|
class CategoryDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'category_id';
|
protected $index = 'category_id';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* ChannelDataGrid class
|
|
||||||
*
|
|
||||||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class ChannelDataGrid extends DataGrid
|
class ChannelDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'id';
|
protected $index = 'id';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* Cart Rule DataGrid class
|
|
||||||
*
|
|
||||||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CartRuleCouponsDataGrid extends DataGrid
|
class CartRuleCouponsDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'id';
|
protected $index = 'id';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* CurrencyDataGrid class
|
|
||||||
*
|
|
||||||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CurrencyDataGrid extends DataGrid
|
class CurrencyDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'id';
|
protected $index = 'id';
|
||||||
|
|
|
||||||
|
|
@ -5,13 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* CustomerDataGrid class
|
|
||||||
*
|
|
||||||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
|
||||||
* @author Vivek Sharma <viveksh047@webkul.com> @viveksh-webkul
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CustomerDataGrid extends DataGrid
|
class CustomerDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'customer_id';
|
protected $index = 'customer_id';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* CustomerDataGrid class
|
|
||||||
*
|
|
||||||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CustomerGroupDataGrid extends DataGrid
|
class CustomerGroupDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'id';
|
protected $index = 'id';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* CustomerReviewDataGrid Class
|
|
||||||
*
|
|
||||||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CustomerReviewDataGrid extends DataGrid
|
class CustomerReviewDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'product_review_id';
|
protected $index = 'product_review_id';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* ExchangeRateDataGrid Class
|
|
||||||
*
|
|
||||||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class ExchangeRatesDataGrid extends DataGrid
|
class ExchangeRatesDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'currency_exch_id';
|
protected $index = 'currency_exch_id';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* InventorySourcesDataGrid Class
|
|
||||||
*
|
|
||||||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class InventorySourcesDataGrid extends DataGrid
|
class InventorySourcesDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'id';
|
protected $index = 'id';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* LocalesDataGrid Class
|
|
||||||
*
|
|
||||||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class LocalesDataGrid extends DataGrid
|
class LocalesDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'id';
|
protected $index = 'id';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* NewsLetterDataGrid Class
|
|
||||||
*
|
|
||||||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class NewsLetterDataGrid extends DataGrid
|
class NewsLetterDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'id';
|
protected $index = 'id';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* OrderDataGrid Class
|
|
||||||
*
|
|
||||||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class OrderDataGrid extends DataGrid
|
class OrderDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'id';
|
protected $index = 'id';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* OrderInvoicesDataGrid Class
|
|
||||||
*
|
|
||||||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class OrderInvoicesDataGrid extends DataGrid
|
class OrderInvoicesDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'id';
|
protected $index = 'id';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* OrderRefundDataGrid Class
|
|
||||||
*
|
|
||||||
* @author Prashant Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class OrderRefundDataGrid extends DataGrid
|
class OrderRefundDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'id';
|
protected $index = 'id';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* OrderShipmentsDataGrid Class
|
|
||||||
*
|
|
||||||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class OrderShipmentsDataGrid extends DataGrid
|
class OrderShipmentsDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'shipment_id';
|
protected $index = 'shipment_id';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
|
|
||||||
/**
|
|
||||||
* ProductDataGrid Class
|
|
||||||
*
|
|
||||||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class ProductDataGrid extends DataGrid
|
class ProductDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $sortOrder = 'desc';
|
protected $sortOrder = 'desc';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* RolesDataGrid Class
|
|
||||||
*
|
|
||||||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class RolesDataGrid extends DataGrid
|
class RolesDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'id';
|
protected $index = 'id';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* SliderDataGrid Class
|
|
||||||
*
|
|
||||||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class SliderDataGrid extends DataGrid
|
class SliderDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'slider_id';
|
protected $index = 'slider_id';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* TaxCategoryDataGrid Class
|
|
||||||
*
|
|
||||||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class TaxCategoryDataGrid extends DataGrid
|
class TaxCategoryDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'id';
|
protected $index = 'id';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* TaxRateDataGrid Class
|
|
||||||
*
|
|
||||||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class TaxRateDataGrid extends DataGrid
|
class TaxRateDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'id';
|
protected $index = 'id';
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Ui\DataGrid\DataGrid;
|
use Webkul\Ui\DataGrid\DataGrid;
|
||||||
|
|
||||||
/**
|
|
||||||
* UserDataGrid Class
|
|
||||||
*
|
|
||||||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class UserDataGrid extends DataGrid
|
class UserDataGrid extends DataGrid
|
||||||
{
|
{
|
||||||
protected $index = 'user_id';
|
protected $index = 'user_id';
|
||||||
|
|
|
||||||
|
|
@ -6,12 +6,6 @@ use Illuminate\Contracts\View\View;
|
||||||
use Maatwebsite\Excel\Concerns\FromView;
|
use Maatwebsite\Excel\Concerns\FromView;
|
||||||
use Maatwebsite\Excel\Concerns\ShouldAutoSize;
|
use Maatwebsite\Excel\Concerns\ShouldAutoSize;
|
||||||
|
|
||||||
/**
|
|
||||||
* DataGridExport class
|
|
||||||
*
|
|
||||||
* @author Rahul Shukla <rahulshukla.symfony517@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class DataGridExport implements FromView, ShouldAutoSize
|
class DataGridExport implements FromView, ShouldAutoSize
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -8,12 +8,6 @@ use Webkul\Core\Tree;
|
||||||
use Illuminate\Support\Facades\Storage;
|
use Illuminate\Support\Facades\Storage;
|
||||||
use Webkul\Admin\Http\Requests\ConfigurationForm;
|
use Webkul\Admin\Http\Requests\ConfigurationForm;
|
||||||
|
|
||||||
/**
|
|
||||||
* Configuration controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class ConfigurationController extends Controller
|
class ConfigurationController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -7,12 +7,6 @@ use Webkul\Admin\Http\Controllers\Controller;
|
||||||
use Webkul\Customer\Repositories\CustomerRepository;
|
use Webkul\Customer\Repositories\CustomerRepository;
|
||||||
use Webkul\Customer\Repositories\CustomerAddressRepository;
|
use Webkul\Customer\Repositories\CustomerAddressRepository;
|
||||||
|
|
||||||
/**
|
|
||||||
* Customer's Address controller
|
|
||||||
*
|
|
||||||
* @author Vivek Sharma <viveksh047@webkul.com>
|
|
||||||
* @copyright 2019 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class AddressController extends Controller
|
class AddressController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -9,12 +9,6 @@ use Webkul\Core\Repositories\ChannelRepository;
|
||||||
use Webkul\Admin\Mail\NewCustomerNotification;
|
use Webkul\Admin\Mail\NewCustomerNotification;
|
||||||
use Mail;
|
use Mail;
|
||||||
|
|
||||||
/**
|
|
||||||
* Customer controlller
|
|
||||||
*
|
|
||||||
* @author Rahul Shukla <rahulshukla.symfony517@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CustomerController extends Controller
|
class CustomerController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\Http\Controllers\Customer;
|
||||||
use Webkul\Admin\Http\Controllers\Controller;
|
use Webkul\Admin\Http\Controllers\Controller;
|
||||||
use Webkul\Customer\Repositories\CustomerGroupRepository;
|
use Webkul\Customer\Repositories\CustomerGroupRepository;
|
||||||
|
|
||||||
/**
|
|
||||||
* Customer Group controlller
|
|
||||||
*
|
|
||||||
* @author Rahul Shukla <rahulshukla.symfony517@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CustomerGroupController extends Controller
|
class CustomerGroupController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -9,12 +9,6 @@ use Webkul\Sales\Repositories\OrderItemRepository;
|
||||||
use Webkul\Customer\Repositories\CustomerRepository;
|
use Webkul\Customer\Repositories\CustomerRepository;
|
||||||
use Webkul\Product\Repositories\ProductInventoryRepository;
|
use Webkul\Product\Repositories\ProductInventoryRepository;
|
||||||
|
|
||||||
/**
|
|
||||||
* Dashboard controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class DashboardController extends Controller
|
class DashboardController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,6 @@ namespace Webkul\Admin\Http\Controllers\Development;
|
||||||
|
|
||||||
use Webkul\Admin\Http\Controllers\Controller;
|
use Webkul\Admin\Http\Controllers\Controller;
|
||||||
|
|
||||||
/**
|
|
||||||
* Dashboard controller
|
|
||||||
*
|
|
||||||
* @author Alexey Khachatryan <info@khachatryan.org>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class DashboardController extends Controller
|
class DashboardController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\Http\Controllers;
|
||||||
use Webkul\Admin\Exports\DataGridExport;
|
use Webkul\Admin\Exports\DataGridExport;
|
||||||
use Excel;
|
use Excel;
|
||||||
|
|
||||||
/**
|
|
||||||
* Export controlller
|
|
||||||
*
|
|
||||||
* @author Rahul Shukla <rahulshukla.symfony517@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class ExportController extends Controller
|
class ExportController extends Controller
|
||||||
{
|
{
|
||||||
protected $exportableGrids = [
|
protected $exportableGrids = [
|
||||||
|
|
|
||||||
|
|
@ -7,12 +7,6 @@ use Webkul\Sales\Repositories\OrderRepository;
|
||||||
use Webkul\Sales\Repositories\InvoiceRepository;
|
use Webkul\Sales\Repositories\InvoiceRepository;
|
||||||
use PDF;
|
use PDF;
|
||||||
|
|
||||||
/**
|
|
||||||
* Sales Invoice controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class InvoiceController extends Controller
|
class InvoiceController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\Http\Controllers\Sales;
|
||||||
use Webkul\Admin\Http\Controllers\Controller;
|
use Webkul\Admin\Http\Controllers\Controller;
|
||||||
use Webkul\Sales\Repositories\OrderRepository;
|
use Webkul\Sales\Repositories\OrderRepository;
|
||||||
|
|
||||||
/**
|
|
||||||
* Sales Order controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class OrderController extends Controller
|
class OrderController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -7,12 +7,6 @@ use Webkul\Sales\Repositories\OrderRepository;
|
||||||
use Webkul\Sales\Repositories\OrderItemRepository;
|
use Webkul\Sales\Repositories\OrderItemRepository;
|
||||||
use Webkul\Sales\Repositories\RefundRepository;
|
use Webkul\Sales\Repositories\RefundRepository;
|
||||||
|
|
||||||
/**
|
|
||||||
* Sales Refund controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class RefundController extends Controller
|
class RefundController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -7,12 +7,6 @@ use Webkul\Sales\Repositories\OrderRepository;
|
||||||
use Webkul\Sales\Repositories\OrderItemRepository;
|
use Webkul\Sales\Repositories\OrderItemRepository;
|
||||||
use Webkul\Sales\Repositories\ShipmentRepository;
|
use Webkul\Sales\Repositories\ShipmentRepository;
|
||||||
|
|
||||||
/**
|
|
||||||
* Sales Shipment controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class ShipmentController extends Controller
|
class ShipmentController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -7,14 +7,6 @@ use Maatwebsite\Excel\Concerns\ToCollection;
|
||||||
use Maatwebsite\Excel\Concerns\WithHeadingRow;
|
use Maatwebsite\Excel\Concerns\WithHeadingRow;
|
||||||
use Maatwebsite\Excel\Concerns\Importable;
|
use Maatwebsite\Excel\Concerns\Importable;
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* DataGridImport class
|
|
||||||
*
|
|
||||||
* @author Rahul Shukla <rahulshukla.symfony517@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
|
|
||||||
class DataGridImport implements ToCollection, WithHeadingRow
|
class DataGridImport implements ToCollection, WithHeadingRow
|
||||||
{
|
{
|
||||||
use Importable;
|
use Importable;
|
||||||
|
|
|
||||||
|
|
@ -11,12 +11,6 @@ use Webkul\Admin\Mail\NewInventorySourceNotification;
|
||||||
use Webkul\Admin\Mail\CancelOrderNotification;
|
use Webkul\Admin\Mail\CancelOrderNotification;
|
||||||
use Webkul\Admin\Mail\NewRefundNotification;
|
use Webkul\Admin\Mail\NewRefundNotification;
|
||||||
|
|
||||||
/**
|
|
||||||
* Order event handler
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class Order
|
class Order
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,12 +7,6 @@ use Illuminate\Mail\Mailable;
|
||||||
use Illuminate\Queue\SerializesModels;
|
use Illuminate\Queue\SerializesModels;
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
|
|
||||||
/**
|
|
||||||
* New Admin Mail class
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class NewAdminNotification extends Mailable
|
class NewAdminNotification extends Mailable
|
||||||
{
|
{
|
||||||
use Queueable, SerializesModels;
|
use Queueable, SerializesModels;
|
||||||
|
|
|
||||||
|
|
@ -7,12 +7,6 @@ use Illuminate\Mail\Mailable;
|
||||||
use Illuminate\Queue\SerializesModels;
|
use Illuminate\Queue\SerializesModels;
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
|
|
||||||
/**
|
|
||||||
* New Admin Mail class
|
|
||||||
*
|
|
||||||
* @author Rahul Shukla <rahulshukla.symfony517@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class NewCustomerNotification extends Mailable
|
class NewCustomerNotification extends Mailable
|
||||||
{
|
{
|
||||||
use Queueable, SerializesModels;
|
use Queueable, SerializesModels;
|
||||||
|
|
|
||||||
|
|
@ -7,12 +7,6 @@ use Illuminate\Mail\Mailable;
|
||||||
use Illuminate\Queue\SerializesModels;
|
use Illuminate\Queue\SerializesModels;
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
|
|
||||||
/**
|
|
||||||
* New InventorySource Notification Mail class
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class NewInventorySourceNotification extends Mailable
|
class NewInventorySourceNotification extends Mailable
|
||||||
{
|
{
|
||||||
use Queueable, SerializesModels;
|
use Queueable, SerializesModels;
|
||||||
|
|
|
||||||
|
|
@ -7,12 +7,6 @@ use Illuminate\Mail\Mailable;
|
||||||
use Illuminate\Queue\SerializesModels;
|
use Illuminate\Queue\SerializesModels;
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
|
|
||||||
/**
|
|
||||||
* New Invoice Mail class
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class NewInvoiceNotification extends Mailable
|
class NewInvoiceNotification extends Mailable
|
||||||
{
|
{
|
||||||
use Queueable, SerializesModels;
|
use Queueable, SerializesModels;
|
||||||
|
|
|
||||||
|
|
@ -7,12 +7,6 @@ use Illuminate\Mail\Mailable;
|
||||||
use Illuminate\Queue\SerializesModels;
|
use Illuminate\Queue\SerializesModels;
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
|
|
||||||
/**
|
|
||||||
* New Order Mail class
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class NewOrderNotification extends Mailable
|
class NewOrderNotification extends Mailable
|
||||||
{
|
{
|
||||||
use Queueable, SerializesModels;
|
use Queueable, SerializesModels;
|
||||||
|
|
|
||||||
|
|
@ -7,12 +7,6 @@ use Illuminate\Mail\Mailable;
|
||||||
use Illuminate\Queue\SerializesModels;
|
use Illuminate\Queue\SerializesModels;
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
|
|
||||||
/**
|
|
||||||
* New Refund Mail class
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class NewRefundNotification extends Mailable
|
class NewRefundNotification extends Mailable
|
||||||
{
|
{
|
||||||
use Queueable, SerializesModels;
|
use Queueable, SerializesModels;
|
||||||
|
|
|
||||||
|
|
@ -7,12 +7,6 @@ use Illuminate\Mail\Mailable;
|
||||||
use Illuminate\Queue\SerializesModels;
|
use Illuminate\Queue\SerializesModels;
|
||||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
|
|
||||||
/**
|
|
||||||
* New Shipment Mail class
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class NewShipmentNotification extends Mailable
|
class NewShipmentNotification extends Mailable
|
||||||
{
|
{
|
||||||
use Queueable, SerializesModels;
|
use Queueable, SerializesModels;
|
||||||
|
|
|
||||||
|
|
@ -8,12 +8,6 @@ use Illuminate\Contracts\Debug\ExceptionHandler;
|
||||||
use Webkul\Admin\Exceptions\Handler;
|
use Webkul\Admin\Exceptions\Handler;
|
||||||
use Webkul\Core\Tree;
|
use Webkul\Core\Tree;
|
||||||
|
|
||||||
/**
|
|
||||||
* Admin service provider
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class AdminServiceProvider extends ServiceProvider
|
class AdminServiceProvider extends ServiceProvider
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Attribute\Http\Controllers;
|
||||||
use Illuminate\Support\Facades\Event;
|
use Illuminate\Support\Facades\Event;
|
||||||
use Webkul\Attribute\Repositories\AttributeRepository;
|
use Webkul\Attribute\Repositories\AttributeRepository;
|
||||||
|
|
||||||
/**
|
|
||||||
* Catalog attribute controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class AttributeController extends Controller
|
class AttributeController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Attribute\Http\Controllers;
|
||||||
use Webkul\Attribute\Repositories\AttributeFamilyRepository;
|
use Webkul\Attribute\Repositories\AttributeFamilyRepository;
|
||||||
use Webkul\Attribute\Repositories\AttributeRepository;
|
use Webkul\Attribute\Repositories\AttributeRepository;
|
||||||
|
|
||||||
/**
|
|
||||||
* Catalog family controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class AttributeFamilyController extends Controller
|
class AttributeFamilyController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -9,12 +9,6 @@ use Webkul\Attribute\Repositories\AttributeGroupRepository;
|
||||||
use Illuminate\Container\Container as App;
|
use Illuminate\Container\Container as App;
|
||||||
use Illuminate\Support\Str;
|
use Illuminate\Support\Str;
|
||||||
|
|
||||||
/**
|
|
||||||
* Attribute Reposotory
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class AttributeFamilyRepository extends Repository
|
class AttributeFamilyRepository extends Repository
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,6 @@ namespace Webkul\Attribute\Repositories;
|
||||||
|
|
||||||
use Webkul\Core\Eloquent\Repository;
|
use Webkul\Core\Eloquent\Repository;
|
||||||
|
|
||||||
/**
|
|
||||||
* Attribute Group Reposotory
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class AttributeGroupRepository extends Repository
|
class AttributeGroupRepository extends Repository
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,6 @@ namespace Webkul\Attribute\Repositories;
|
||||||
|
|
||||||
use Webkul\Core\Eloquent\Repository;
|
use Webkul\Core\Eloquent\Repository;
|
||||||
|
|
||||||
/**
|
|
||||||
* Attribute Option Reposotory
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class AttributeOptionRepository extends Repository
|
class AttributeOptionRepository extends Repository
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,12 +8,6 @@ use Webkul\Attribute\Repositories\AttributeOptionRepository;
|
||||||
use Illuminate\Container\Container as App;
|
use Illuminate\Container\Container as App;
|
||||||
use Illuminate\Support\Str;
|
use Illuminate\Support\Str;
|
||||||
|
|
||||||
/**
|
|
||||||
* Attribute Reposotory
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class AttributeRepository extends Repository
|
class AttributeRepository extends Repository
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -2,12 +2,6 @@
|
||||||
|
|
||||||
namespace Webkul\BookingProduct\Helpers;
|
namespace Webkul\BookingProduct\Helpers;
|
||||||
|
|
||||||
/**
|
|
||||||
* AppointmentSlot Helper
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class AppointmentSlot extends Booking
|
class AppointmentSlot extends Booking
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -12,12 +12,6 @@ use Webkul\BookingProduct\Repositories\BookingProductRentalSlotRepository;
|
||||||
use Webkul\BookingProduct\Repositories\BookingProductTableSlotRepository;
|
use Webkul\BookingProduct\Repositories\BookingProductTableSlotRepository;
|
||||||
use Webkul\BookingProduct\Repositories\BookingRepository;
|
use Webkul\BookingProduct\Repositories\BookingRepository;
|
||||||
|
|
||||||
/**
|
|
||||||
* Booking Helper
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class Booking
|
class Booking
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,6 @@ namespace Webkul\BookingProduct\Helpers;
|
||||||
|
|
||||||
use Carbon\Carbon;
|
use Carbon\Carbon;
|
||||||
|
|
||||||
/**
|
|
||||||
* DefaultSlot Helper
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class DefaultSlot extends Booking
|
class DefaultSlot extends Booking
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\BookingProduct\Helpers;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Carbon\Carbon;
|
use Carbon\Carbon;
|
||||||
|
|
||||||
/**
|
|
||||||
* EventTicket Helper
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class EventTicket extends Booking
|
class EventTicket extends Booking
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\BookingProduct\Helpers;
|
||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Carbon\Carbon;
|
use Carbon\Carbon;
|
||||||
|
|
||||||
/**
|
|
||||||
* RentalSlot Helper
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class RentalSlot extends Booking
|
class RentalSlot extends Booking
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -2,12 +2,6 @@
|
||||||
|
|
||||||
namespace Webkul\BookingProduct\Helpers;
|
namespace Webkul\BookingProduct\Helpers;
|
||||||
|
|
||||||
/**
|
|
||||||
* TableSlot Helper
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class TableSlot extends Booking
|
class TableSlot extends Booking
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -9,12 +9,6 @@ use Webkul\BookingProduct\Helpers\RentalSlot as RentalSlotHelper;
|
||||||
use Webkul\BookingProduct\Helpers\EventTicket as EventTicketHelper;
|
use Webkul\BookingProduct\Helpers\EventTicket as EventTicketHelper;
|
||||||
use Webkul\BookingProduct\Helpers\TableSlot as TableSlotHelper;
|
use Webkul\BookingProduct\Helpers\TableSlot as TableSlotHelper;
|
||||||
|
|
||||||
/**
|
|
||||||
* BookingProduct page controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class BookingProductController extends Controller
|
class BookingProductController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,6 @@ namespace Webkul\BookingProduct\Listeners;
|
||||||
|
|
||||||
use Webkul\BookingProduct\Repositories\BookingRepository;
|
use Webkul\BookingProduct\Repositories\BookingRepository;
|
||||||
|
|
||||||
/**
|
|
||||||
* Order Event handler
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class Order
|
class Order
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,6 @@ namespace Webkul\BookingProduct\Repositories;
|
||||||
|
|
||||||
use Webkul\Core\Eloquent\Repository;
|
use Webkul\Core\Eloquent\Repository;
|
||||||
|
|
||||||
/**
|
|
||||||
* BookingProductAppointmentSlot Repository
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class BookingProductAppointmentSlotRepository extends Repository
|
class BookingProductAppointmentSlotRepository extends Repository
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,6 @@ namespace Webkul\BookingProduct\Repositories;
|
||||||
|
|
||||||
use Webkul\Core\Eloquent\Repository;
|
use Webkul\Core\Eloquent\Repository;
|
||||||
|
|
||||||
/**
|
|
||||||
* BookingProductDefaultSlot Repository
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class BookingProductDefaultSlotRepository extends Repository
|
class BookingProductDefaultSlotRepository extends Repository
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\BookingProduct\Repositories;
|
||||||
use Webkul\Core\Eloquent\Repository;
|
use Webkul\Core\Eloquent\Repository;
|
||||||
use Illuminate\Support\Str;
|
use Illuminate\Support\Str;
|
||||||
|
|
||||||
/**
|
|
||||||
* BookingProductEventTicket Repository
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class BookingProductEventTicketRepository extends Repository
|
class BookingProductEventTicketRepository extends Repository
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,6 @@ namespace Webkul\BookingProduct\Repositories;
|
||||||
|
|
||||||
use Webkul\Core\Eloquent\Repository;
|
use Webkul\Core\Eloquent\Repository;
|
||||||
|
|
||||||
/**
|
|
||||||
* BookingProductRentalSlot Repository
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class BookingProductRentalSlotRepository extends Repository
|
class BookingProductRentalSlotRepository extends Repository
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -6,12 +6,6 @@ use Illuminate\Container\Container as App;
|
||||||
use Carbon\Carbon;
|
use Carbon\Carbon;
|
||||||
use Webkul\Core\Eloquent\Repository;
|
use Webkul\Core\Eloquent\Repository;
|
||||||
|
|
||||||
/**
|
|
||||||
* BookingProduct Repository
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class BookingProductRepository extends Repository
|
class BookingProductRepository extends Repository
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,6 @@ namespace Webkul\BookingProduct\Repositories;
|
||||||
|
|
||||||
use Webkul\Core\Eloquent\Repository;
|
use Webkul\Core\Eloquent\Repository;
|
||||||
|
|
||||||
/**
|
|
||||||
* BookingProductTableSlot Repository
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class BookingProductTableSlotRepository extends Repository
|
class BookingProductTableSlotRepository extends Repository
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -7,12 +7,6 @@ use Illuminate\Support\Facades\Event;
|
||||||
use Carbon\Carbon;
|
use Carbon\Carbon;
|
||||||
use Webkul\Core\Eloquent\Repository;
|
use Webkul\Core\Eloquent\Repository;
|
||||||
|
|
||||||
/**
|
|
||||||
* BookingProduct Repository
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class BookingRepository extends Repository
|
class BookingRepository extends Repository
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -12,12 +12,6 @@ use Webkul\BookingProduct\Repositories\BookingProductRepository;
|
||||||
use Webkul\BookingProduct\Helpers\Booking as BookingHelper;
|
use Webkul\BookingProduct\Helpers\Booking as BookingHelper;
|
||||||
use Webkul\Product\Type\Virtual;
|
use Webkul\Product\Type\Virtual;
|
||||||
|
|
||||||
/**
|
|
||||||
* Class Booking.
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class Booking extends Virtual
|
class Booking extends Virtual
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\CMS\Http\Controllers\Admin;
|
||||||
use Webkul\CMS\Http\Controllers\Controller;
|
use Webkul\CMS\Http\Controllers\Controller;
|
||||||
use Webkul\CMS\Repositories\CmsRepository;
|
use Webkul\CMS\Repositories\CmsRepository;
|
||||||
|
|
||||||
/**
|
|
||||||
* CMS controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class PageController extends Controller
|
class PageController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\CMS\Http\Controllers\Shop;
|
||||||
use Webkul\CMS\Http\Controllers\Controller;
|
use Webkul\CMS\Http\Controllers\Controller;
|
||||||
use Webkul\CMS\Repositories\CmsRepository;
|
use Webkul\CMS\Repositories\CmsRepository;
|
||||||
|
|
||||||
/**
|
|
||||||
* PagePresenter controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class PagePresenterController extends Controller
|
class PagePresenterController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -7,12 +7,6 @@ use Illuminate\Database\Eloquent\ModelNotFoundException;
|
||||||
use Webkul\Core\Eloquent\Repository;
|
use Webkul\Core\Eloquent\Repository;
|
||||||
use Webkul\CMS\Models\CmsPageTranslation;
|
use Webkul\CMS\Models\CmsPageTranslation;
|
||||||
|
|
||||||
/**
|
|
||||||
* CMS Reposotory
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CmsRepository extends Repository
|
class CmsRepository extends Repository
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -7,12 +7,6 @@ use Illuminate\Support\Facades\Event;
|
||||||
use Webkul\CartRule\Repositories\CartRuleRepository;
|
use Webkul\CartRule\Repositories\CartRuleRepository;
|
||||||
use Webkul\CartRule\Repositories\CartRuleCouponRepository;
|
use Webkul\CartRule\Repositories\CartRuleCouponRepository;
|
||||||
|
|
||||||
/**
|
|
||||||
* Cart Rule controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CartRuleController extends Controller
|
class CartRuleController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,6 @@ namespace Webkul\CartRule\Http\Controllers;
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
use Webkul\CartRule\Repositories\CartRuleCouponRepository;
|
use Webkul\CartRule\Repositories\CartRuleCouponRepository;
|
||||||
|
|
||||||
/**
|
|
||||||
* Cart Rule Coupon controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CartRuleCouponController extends Controller
|
class CartRuleCouponController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,6 @@ namespace Webkul\CartRule\Listeners;
|
||||||
|
|
||||||
use Webkul\CartRule\Helpers\CartRule;
|
use Webkul\CartRule\Helpers\CartRule;
|
||||||
|
|
||||||
/**
|
|
||||||
* Cart event handler
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class Cart
|
class Cart
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -7,12 +7,6 @@ use Webkul\CartRule\Repositories\CartRuleCustomerRepository;
|
||||||
use Webkul\CartRule\Repositories\CartRuleCouponRepository;
|
use Webkul\CartRule\Repositories\CartRuleCouponRepository;
|
||||||
use Webkul\CartRule\Repositories\CartRuleCouponUsageRepository;
|
use Webkul\CartRule\Repositories\CartRuleCouponUsageRepository;
|
||||||
|
|
||||||
/**
|
|
||||||
* Order event handler
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class Order
|
class Order
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,6 @@ namespace Webkul\CartRule\Repositories;
|
||||||
|
|
||||||
use Webkul\Core\Eloquent\Repository;
|
use Webkul\Core\Eloquent\Repository;
|
||||||
|
|
||||||
/**
|
|
||||||
* CartRuleCoupon Reposotory
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CartRuleCouponRepository extends Repository
|
class CartRuleCouponRepository extends Repository
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,6 @@ namespace Webkul\CartRule\Repositories;
|
||||||
|
|
||||||
use Webkul\Core\Eloquent\Repository;
|
use Webkul\Core\Eloquent\Repository;
|
||||||
|
|
||||||
/**
|
|
||||||
* CartRuleCouponUsage Reposotory
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CartRuleCouponUsageRepository extends Repository
|
class CartRuleCouponUsageRepository extends Repository
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,6 @@ namespace Webkul\CartRule\Repositories;
|
||||||
|
|
||||||
use Webkul\Core\Eloquent\Repository;
|
use Webkul\Core\Eloquent\Repository;
|
||||||
|
|
||||||
/**
|
|
||||||
* CartRuleCustomer Reposotory
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CartRuleCustomerRepository extends Repository
|
class CartRuleCustomerRepository extends Repository
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -11,12 +11,6 @@ use Webkul\Tax\Repositories\TaxCategoryRepository;
|
||||||
use Webkul\Core\Repositories\CountryRepository;
|
use Webkul\Core\Repositories\CountryRepository;
|
||||||
use Webkul\Core\Repositories\CountryStateRepository;
|
use Webkul\Core\Repositories\CountryStateRepository;
|
||||||
|
|
||||||
/**
|
|
||||||
* CartRule Reposotory
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CartRuleRepository extends Repository
|
class CartRuleRepository extends Repository
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -7,12 +7,6 @@ use Illuminate\Support\Facades\Event;
|
||||||
use Webkul\CatalogRule\Repositories\CatalogRuleRepository;
|
use Webkul\CatalogRule\Repositories\CatalogRuleRepository;
|
||||||
use Webkul\CatalogRule\Helpers\CatalogRuleIndex;
|
use Webkul\CatalogRule\Helpers\CatalogRuleIndex;
|
||||||
|
|
||||||
/**
|
|
||||||
* Catalog Rule controller
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CatalogRuleController extends Controller
|
class CatalogRuleController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,6 @@ namespace Webkul\CatalogRule\Listeners;
|
||||||
|
|
||||||
use Webkul\CatalogRule\Helpers\CatalogRuleIndex;
|
use Webkul\CatalogRule\Helpers\CatalogRuleIndex;
|
||||||
|
|
||||||
/**
|
|
||||||
* Products Event handler
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class Product
|
class Product
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -3,13 +3,7 @@
|
||||||
namespace Webkul\CatalogRule\Repositories;
|
namespace Webkul\CatalogRule\Repositories;
|
||||||
|
|
||||||
use Webkul\Core\Eloquent\Repository;
|
use Webkul\Core\Eloquent\Repository;
|
||||||
|
x
|
||||||
/**
|
|
||||||
* CatalogRuleProductPrice Repository
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CatalogRuleProductPriceRepository extends Repository
|
class CatalogRuleProductPriceRepository extends Repository
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,6 @@ namespace Webkul\CatalogRule\Repositories;
|
||||||
|
|
||||||
use Webkul\Core\Eloquent\Repository;
|
use Webkul\Core\Eloquent\Repository;
|
||||||
|
|
||||||
/**
|
|
||||||
* CatalogRuleProductPrice Repository
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CatalogRuleProductRepository extends Repository
|
class CatalogRuleProductRepository extends Repository
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -9,12 +9,6 @@ use Webkul\Attribute\Repositories\AttributeRepository;
|
||||||
use Webkul\Category\Repositories\CategoryRepository;
|
use Webkul\Category\Repositories\CategoryRepository;
|
||||||
use Webkul\Tax\Repositories\TaxCategoryRepository;
|
use Webkul\Tax\Repositories\TaxCategoryRepository;
|
||||||
|
|
||||||
/**
|
|
||||||
* CatalogRule Reposotory
|
|
||||||
*
|
|
||||||
* @author Jitendra Singh <jitendra@webkul.com>
|
|
||||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
||||||
*/
|
|
||||||
class CatalogRuleRepository extends Repository
|
class CatalogRuleRepository extends Repository
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue