All Projects → lehoangduc → Wl Bootstrap

lehoangduc / Wl Bootstrap

Licence: mit
Integrating Laravel into WordPress

Projects that are alternatives of or similar to Wl Bootstrap

Laravel Settings
Simple Settings package for a laravel application
Stars: ✭ 45 (-16.67%)
Mutual labels:  laravel, laravel5, bootstrap
Bootstrap Blocks Wordpress Plugin
Bootstrap Gutenberg Blocks for WordPress
Stars: ✭ 143 (+164.81%)
Mutual labels:  wordpress, wordpress-plugin, bootstrap
Ecommerce Laravel Bootstrap
Responsive, Multi-Vendor, MultiLanguage Online Store Platform (shopping cart solution)
Stars: ✭ 99 (+83.33%)
Mutual labels:  laravel, laravel5, bootstrap
Fullycms
Fully CMS - Multi Language Content Management System - Laravel
Stars: ✭ 465 (+761.11%)
Mutual labels:  laravel, laravel5, bootstrap
Cms
Multilingual PHP CMS built with Laravel and bootstrap
Stars: ✭ 2,342 (+4237.04%)
Mutual labels:  laravel, laravel5, bootstrap
Laracms
LaraCMS 是在学习 laravel ( web 开发实战进阶 + 实战构架 API 服务器) 过程中产生的一个业余作品,试图通过简单的方式,快速构建一套基本的企业站同时保留很灵活的扩展能力和优雅的代码方式,当然这些都得益Laravel的优秀设计。同时LaraCMS 也是一个学习Laravel 不错的参考示例。
Stars: ✭ 588 (+988.89%)
Mutual labels:  laravel, laravel5, bootstrap
Wp Phpmailer
Provides a clean and simple way to configure the WordPress-bundled PHPMailer library, allowing you to quickly get started sending mail through a local or cloud based service of your choice
Stars: ✭ 46 (-14.81%)
Mutual labels:  wordpress, wordpress-plugin
Osen Wc Mpesa
WordPress Plugin that extends WordPress and WooCommerce functionality to integrate MPESA for making payments, remittances, checking account balance transaction status and reversals.
Stars: ✭ 45 (-16.67%)
Mutual labels:  wordpress, wordpress-plugin
Larrock Core
Core components for LarrockCMS
Stars: ✭ 46 (-14.81%)
Mutual labels:  laravel, laravel5
Meta Box
The best plugin for WordPress custom fields and custom meta boxes
Stars: ✭ 1,039 (+1824.07%)
Mutual labels:  wordpress, wordpress-plugin
Geodirectory
GeoDirectory is the fastest growing Directory plugin for WordPress. Feel free to contribute or suggest new developments and help us take GD to the next level. http://wpgeodirectory.com | http://wordpress.org/plugins/geodirectory/
Stars: ✭ 41 (-24.07%)
Mutual labels:  wordpress, wordpress-plugin
Elasticpress
A fast and flexible search and query engine for WordPress.
Stars: ✭ 1,037 (+1820.37%)
Mutual labels:  wordpress, wordpress-plugin
Woosidebars
Replace registered sidebars in your WordPress themes using different conditions such as a specific page, a category or even an individual blog post.
Stars: ✭ 47 (-12.96%)
Mutual labels:  wordpress, wordpress-plugin
Wordpress
Docker based Wordpress deployment using a collection of optimized containers w/ Nginx, PHP-FPM, MariaDB and Redis.
Stars: ✭ 44 (-18.52%)
Mutual labels:  wordpress, wordpress-plugin
Performance Improvements For Woocommerce
Performance tweaks for the front-end and back-end of a store.
Stars: ✭ 46 (-14.81%)
Mutual labels:  wordpress, wordpress-plugin
Cloud Blocks
WP plugin for Gutenberg Cloud – Your library of blocks in the cloud!
Stars: ✭ 44 (-18.52%)
Mutual labels:  wordpress, wordpress-plugin
Cursor Pagination
Cursor pagination for your Laravel API
Stars: ✭ 47 (-12.96%)
Mutual labels:  laravel, laravel5
User Feedback
Collect user feedback directly from your WordPress site
Stars: ✭ 49 (-9.26%)
Mutual labels:  wordpress, wordpress-plugin
Object Sync For Salesforce
WordPress plugin that maps and syncs data between Salesforce objects and WordPress objects.
Stars: ✭ 48 (-11.11%)
Mutual labels:  wordpress, wordpress-plugin
Bitcoin Wordpress Plugin
GoUrl Official Bitcoin Payment Gateway for Wordpress 3.5+ (or higher). Sell Products, Files, Digital Downloads, Membership on your website. Accept Bitcoin, Litecoin, Dogecoin, Darkcoin, Reddcoin, etc Payments Online. Use Pay-Per-Download, Pay-Per-Product, Pay-Per-Membership, Pay-Per-Page/Video-Access on your website. It is Easy!
Stars: ✭ 49 (-9.26%)
Mutual labels:  wordpress, wordpress-plugin

WordPress Laravel Bootstrap

A WordPress plugin helps you use functions, methods, libraries of Laravel in any WordPress projects

Requiments

  • Laravel >= 5.2
  • WordPress >= 4.6

Installation

  • Copy "wl-bootstrap" folder into "wp-content/plugins"
  • Define Laravel source code path in "wp-config.php" as a constant:
define('LARAVEL_PATH', '/srv/www/laravel-example-project'); // Make sure this is pointed to same server

Usage

You can use all codes in your Laravel project, build Single Sign On with less effort on same/subdomain and so on...

<?php

// Helper
$array = array_add(['name' => 'Desk'], 'price', 100);

// Session
session(['chairs' => 7, 'instruments' => 3]);

// Authentication
Auth::check();

// Query Builder
$users = DB::table('users')->get();

// Eloquent
$flights = App\Flight::where('active', 1)
               ->orderBy('name', 'desc')
               ->take(10)
               ->get();

Contributing

All contributions are welcome to help improve WL-Bootstrap.

License

MIT

Copyright (c) 2017-present, Golr

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].