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\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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -9,12 +9,6 @@ use Webkul\API\Http\Resources\Checkout\Cart as CartResource;
|
|||
use Cart;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -6,12 +6,6 @@ use Illuminate\Http\Request;
|
|||
use Webkul\Category\Repositories\CategoryRepository;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -15,12 +15,6 @@ use Webkul\Sales\Repositories\OrderRepository;
|
|||
use Illuminate\Support\Str;
|
||||
use Cart;
|
||||
|
||||
/**
|
||||
* Checkout controller
|
||||
*
|
||||
* @author Jitendra Singh <jitendra@webkul.com>
|
||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
||||
*/
|
||||
class CheckoutController extends Controller
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -4,12 +4,6 @@ namespace Webkul\API\Http\Controllers\Shop;
|
|||
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -6,13 +6,6 @@ use Illuminate\Support\Facades\Event;
|
|||
use Webkul\Customer\Repositories\CustomerRepository;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\API\Http\Controllers\Shop;
|
|||
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
|
||||
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
|
||||
{
|
||||
use SendsPasswordResetEmails;
|
||||
|
|
|
|||
|
|
@ -7,12 +7,6 @@ use Illuminate\Http\Response;
|
|||
use Webkul\Product\Repositories\ProductRepository;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -4,12 +4,6 @@ namespace Webkul\API\Http\Controllers\Shop;
|
|||
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -6,12 +6,6 @@ use Illuminate\Http\Request;
|
|||
use Webkul\Product\Repositories\ProductReviewRepository;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -6,12 +6,6 @@ use Illuminate\Support\Facades\Event;
|
|||
use Webkul\Customer\Repositories\CustomerRepository;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -9,12 +9,6 @@ use Webkul\API\Http\Resources\Customer\Wishlist as WishlistResource;
|
|||
use Webkul\API\Http\Resources\Checkout\Cart as CartResource;
|
||||
use Cart;
|
||||
|
||||
/**
|
||||
* Wishlist controller
|
||||
*
|
||||
* @author Jitendra Singh <jitendra@webkul.com>
|
||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
||||
*/
|
||||
class WishlistController extends Controller
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -6,12 +6,6 @@ use Illuminate\Support\Facades\DB;
|
|||
use Webkul\Ui\DataGrid\DataGrid;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'id';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'id';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'id';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'id';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'id';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'id';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'category_id';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'id';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'id';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'id';
|
||||
|
|
|
|||
|
|
@ -5,13 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'customer_id';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'id';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'product_review_id';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'currency_exch_id';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'id';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'id';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'id';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'id';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'id';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'id';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'shipment_id';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Webkul\Ui\DataGrid\DataGrid;
|
||||
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
|
||||
{
|
||||
protected $sortOrder = 'desc';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'id';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'slider_id';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'id';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'id';
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\DataGrids;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
protected $index = 'user_id';
|
||||
|
|
|
|||
|
|
@ -6,12 +6,6 @@ use Illuminate\Contracts\View\View;
|
|||
use Maatwebsite\Excel\Concerns\FromView;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -8,12 +8,6 @@ use Webkul\Core\Tree;
|
|||
use Illuminate\Support\Facades\Storage;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -7,12 +7,6 @@ use Webkul\Admin\Http\Controllers\Controller;
|
|||
use Webkul\Customer\Repositories\CustomerRepository;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -9,12 +9,6 @@ use Webkul\Core\Repositories\ChannelRepository;
|
|||
use Webkul\Admin\Mail\NewCustomerNotification;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\Http\Controllers\Customer;
|
|||
use Webkul\Admin\Http\Controllers\Controller;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -9,12 +9,6 @@ use Webkul\Sales\Repositories\OrderItemRepository;
|
|||
use Webkul\Customer\Repositories\CustomerRepository;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -4,12 +4,6 @@ namespace Webkul\Admin\Http\Controllers\Development;
|
|||
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\Http\Controllers;
|
|||
use Webkul\Admin\Exports\DataGridExport;
|
||||
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
|
||||
{
|
||||
protected $exportableGrids = [
|
||||
|
|
|
|||
|
|
@ -7,12 +7,6 @@ use Webkul\Sales\Repositories\OrderRepository;
|
|||
use Webkul\Sales\Repositories\InvoiceRepository;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Admin\Http\Controllers\Sales;
|
|||
use Webkul\Admin\Http\Controllers\Controller;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -7,12 +7,6 @@ use Webkul\Sales\Repositories\OrderRepository;
|
|||
use Webkul\Sales\Repositories\OrderItemRepository;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -7,12 +7,6 @@ use Webkul\Sales\Repositories\OrderRepository;
|
|||
use Webkul\Sales\Repositories\OrderItemRepository;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -7,14 +7,6 @@ use Maatwebsite\Excel\Concerns\ToCollection;
|
|||
use Maatwebsite\Excel\Concerns\WithHeadingRow;
|
||||
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
|
||||
{
|
||||
use Importable;
|
||||
|
|
|
|||
|
|
@ -11,12 +11,6 @@ use Webkul\Admin\Mail\NewInventorySourceNotification;
|
|||
use Webkul\Admin\Mail\CancelOrderNotification;
|
||||
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
|
||||
{
|
||||
|
||||
|
|
|
|||
|
|
@ -7,12 +7,6 @@ use Illuminate\Mail\Mailable;
|
|||
use Illuminate\Queue\SerializesModels;
|
||||
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
|
||||
{
|
||||
use Queueable, SerializesModels;
|
||||
|
|
|
|||
|
|
@ -7,12 +7,6 @@ use Illuminate\Mail\Mailable;
|
|||
use Illuminate\Queue\SerializesModels;
|
||||
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
|
||||
{
|
||||
use Queueable, SerializesModels;
|
||||
|
|
|
|||
|
|
@ -7,12 +7,6 @@ use Illuminate\Mail\Mailable;
|
|||
use Illuminate\Queue\SerializesModels;
|
||||
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
|
||||
{
|
||||
use Queueable, SerializesModels;
|
||||
|
|
|
|||
|
|
@ -7,12 +7,6 @@ use Illuminate\Mail\Mailable;
|
|||
use Illuminate\Queue\SerializesModels;
|
||||
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
|
||||
{
|
||||
use Queueable, SerializesModels;
|
||||
|
|
|
|||
|
|
@ -7,12 +7,6 @@ use Illuminate\Mail\Mailable;
|
|||
use Illuminate\Queue\SerializesModels;
|
||||
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
|
||||
{
|
||||
use Queueable, SerializesModels;
|
||||
|
|
|
|||
|
|
@ -7,12 +7,6 @@ use Illuminate\Mail\Mailable;
|
|||
use Illuminate\Queue\SerializesModels;
|
||||
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
|
||||
{
|
||||
use Queueable, SerializesModels;
|
||||
|
|
|
|||
|
|
@ -7,12 +7,6 @@ use Illuminate\Mail\Mailable;
|
|||
use Illuminate\Queue\SerializesModels;
|
||||
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
|
||||
{
|
||||
use Queueable, SerializesModels;
|
||||
|
|
|
|||
|
|
@ -8,12 +8,6 @@ use Illuminate\Contracts\Debug\ExceptionHandler;
|
|||
use Webkul\Admin\Exceptions\Handler;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Attribute\Http\Controllers;
|
|||
use Illuminate\Support\Facades\Event;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\Attribute\Http\Controllers;
|
|||
use Webkul\Attribute\Repositories\AttributeFamilyRepository;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -9,12 +9,6 @@ use Webkul\Attribute\Repositories\AttributeGroupRepository;
|
|||
use Illuminate\Container\Container as App;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -4,12 +4,6 @@ namespace Webkul\Attribute\Repositories;
|
|||
|
||||
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
|
||||
{
|
||||
|
||||
|
|
|
|||
|
|
@ -4,12 +4,6 @@ namespace Webkul\Attribute\Repositories;
|
|||
|
||||
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
|
||||
{
|
||||
|
||||
|
|
|
|||
|
|
@ -8,12 +8,6 @@ use Webkul\Attribute\Repositories\AttributeOptionRepository;
|
|||
use Illuminate\Container\Container as App;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -2,12 +2,6 @@
|
|||
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -12,12 +12,6 @@ use Webkul\BookingProduct\Repositories\BookingProductRentalSlotRepository;
|
|||
use Webkul\BookingProduct\Repositories\BookingProductTableSlotRepository;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -4,12 +4,6 @@ namespace Webkul\BookingProduct\Helpers;
|
|||
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\BookingProduct\Helpers;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\BookingProduct\Helpers;
|
|||
use Illuminate\Support\Facades\DB;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -2,12 +2,6 @@
|
|||
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -9,12 +9,6 @@ use Webkul\BookingProduct\Helpers\RentalSlot as RentalSlotHelper;
|
|||
use Webkul\BookingProduct\Helpers\EventTicket as EventTicketHelper;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -4,12 +4,6 @@ namespace Webkul\BookingProduct\Listeners;
|
|||
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -4,12 +4,6 @@ namespace Webkul\BookingProduct\Repositories;
|
|||
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -4,12 +4,6 @@ namespace Webkul\BookingProduct\Repositories;
|
|||
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\BookingProduct\Repositories;
|
|||
use Webkul\Core\Eloquent\Repository;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -4,12 +4,6 @@ namespace Webkul\BookingProduct\Repositories;
|
|||
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -6,12 +6,6 @@ use Illuminate\Container\Container as App;
|
|||
use Carbon\Carbon;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -4,12 +4,6 @@ namespace Webkul\BookingProduct\Repositories;
|
|||
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -7,12 +7,6 @@ use Illuminate\Support\Facades\Event;
|
|||
use Carbon\Carbon;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -12,12 +12,6 @@ use Webkul\BookingProduct\Repositories\BookingProductRepository;
|
|||
use Webkul\BookingProduct\Helpers\Booking as BookingHelper;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\CMS\Http\Controllers\Admin;
|
|||
use Webkul\CMS\Http\Controllers\Controller;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\CMS\Http\Controllers\Shop;
|
|||
use Webkul\CMS\Http\Controllers\Controller;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -7,12 +7,6 @@ use Illuminate\Database\Eloquent\ModelNotFoundException;
|
|||
use Webkul\Core\Eloquent\Repository;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -7,12 +7,6 @@ use Illuminate\Support\Facades\Event;
|
|||
use Webkul\CartRule\Repositories\CartRuleRepository;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@ namespace Webkul\CartRule\Http\Controllers;
|
|||
use Illuminate\Http\Request;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -4,12 +4,6 @@ namespace Webkul\CartRule\Listeners;
|
|||
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -7,12 +7,6 @@ use Webkul\CartRule\Repositories\CartRuleCustomerRepository;
|
|||
use Webkul\CartRule\Repositories\CartRuleCouponRepository;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -4,12 +4,6 @@ namespace Webkul\CartRule\Repositories;
|
|||
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -4,12 +4,6 @@ namespace Webkul\CartRule\Repositories;
|
|||
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -4,12 +4,6 @@ namespace Webkul\CartRule\Repositories;
|
|||
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -11,12 +11,6 @@ use Webkul\Tax\Repositories\TaxCategoryRepository;
|
|||
use Webkul\Core\Repositories\CountryRepository;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -7,12 +7,6 @@ use Illuminate\Support\Facades\Event;
|
|||
use Webkul\CatalogRule\Repositories\CatalogRuleRepository;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -4,12 +4,6 @@ namespace Webkul\CatalogRule\Listeners;
|
|||
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -3,13 +3,7 @@
|
|||
namespace Webkul\CatalogRule\Repositories;
|
||||
|
||||
use Webkul\Core\Eloquent\Repository;
|
||||
|
||||
/**
|
||||
* CatalogRuleProductPrice Repository
|
||||
*
|
||||
* @author Jitendra Singh <jitendra@webkul.com>
|
||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
||||
*/
|
||||
x
|
||||
class CatalogRuleProductPriceRepository extends Repository
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -4,12 +4,6 @@ namespace Webkul\CatalogRule\Repositories;
|
|||
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -9,12 +9,6 @@ use Webkul\Attribute\Repositories\AttributeRepository;
|
|||
use Webkul\Category\Repositories\CategoryRepository;
|
||||
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
|
||||
{
|
||||
/**
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue