Download the PHP package wikichua/simplecontrolpanel without Composer

On this page you can find all versions of the php package wikichua/simplecontrolpanel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package simplecontrolpanel

Simple Control Panel

Forked from GitHub

Laravel Admin Panel ("LAP") is a drop-in admin panel package for Laravel which promotes rapid scaffolding & development.

Features:

Packages used:

Assets used:

Installation

Require via composer:

composer require wikichua/simplecontrolpanel @dev

For Laravel 7.x

composer require laravel/ui

Publish install files:

php artisan vendor:publish --tag=lap.general

General install including:

Publish advanced files (1 by 1):

php artisan vendor:publish --tag=lap.config
php artisan vendor:publish --tag=lap.seo.config
php artisan vendor:publish --tag=lap.public
php artisan vendor:publish --tag=lap.lang
php artisan vendor:publish --tag=lap.layouts
php artisan vendor:publish --tag=lap.auth.view
php artisan vendor:publish --tag=lap.backend.view
php artisan vendor:publish --tag=lap.users.view

Publish all migrations files:

php artisan vendor:publish --tag=lap.migrations

Publish all stubs files:

php artisan vendor:publish --tag=lap.stubs

Publish all views files:

php artisan vendor:publish --tag=lap.all.view

Publish admin route files:

php artisan vendor:publish --tag=lap.admin.route

Add the AdminUser, DynamicFillable, and UserTimezone traits to your User model:

use Wikichua\Simplecontrolpanel\Traits\AdminUser;
use Wikichua\Simplecontrolpanel\Traits\DynamicFillable;
use Wikichua\Simplecontrolpanel\Traits\UserTimezone;

class User extends Authenticatable
{
    use Notifiable, AdminUser, DynamicFillable, UserTimezone;

Add this in your controller.php use \Wikichua\Simplecontrolpanel\Traits\Controller;

class Controller extends BaseController
{
    use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
    use \Wikichua\Simplecontrolpanel\Traits\Controller;

Run the migrations:

php artisan migrate

Alternative installation:

Install laravel:

composer create-project laravel/laravel --prefer-dist appName

Create directories in terminal:

cd appName; mkdir packages; cd packages; mkdir wikichua; cd wikichua; git clone https://github.com/wikichua/simplecontrolpanel.git

Add this in your composer.json under scripts section:

"require-dev": {
    "wikichua/simplecontrolpanel": "*"
},

"repositories": {
    "wikichua/simplecontrolpanel": {
        "type": "path",
        "url": "/path/to/your/appName/packages/wikichua/simplecontrolpanel"
    }
}

Alternative installation 2:

Need packager to ease your work

$ composer require jeroen-g/laravel-packager --dev

Import package from github

$ php artisan packager:git [email protected]:wikichua/simplecontrolpanel.git

Add this in your composer.json under scripts section:

"require-dev": {
    "wikichua/simplecontrolpanel": "*"
},

Run composer update

Logging In

Visit (APP_URL)/admin to access the admin panel.

The default admin login is:

Email Address: [email protected]
Password: admin123

All versions of simplecontrolpanel with dependencies

PHP Build Version
Package Version
Requires erusev/parsedown Version ^1.7
yajra/laravel-datatables-oracle Version ^9.6
tightenco/ziggy Version ^0.8.0
kalnoy/nestedset Version ^5.0
justbetter/laravel-pagination-with-havings Version ^1.2
laravel/helpers Version ^1.1
artesaos/seotools Version ^0.17.0
yajra/laravel-datatables Version ^1.5
phpoffice/phpspreadsheet Version ^1.9
rap2hpoutre/fast-excel Version ^1.3
rap2hpoutre/laravel-log-viewer Version ^1.3
pusher/pusher-php-server Version ^4.1
laravel/socialite Version ^4.3
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package wikichua/simplecontrolpanel contains the following files

Loading the files please wait ....