Coder Social home page Coder Social logo

masjeeder-laravel's Introduction

Laravel5.5-adminLTE

Laravel 5.5 PHP Framework with AdminLTE2

Setup:

git clone https://github.com/chrissetyawan/laravel5.5-adminlte.git projectname
cd projectname
composer install                   # Install backend dependencies
sudo chmod 777 storage/ -R         # Chmod Storage
cp .env.example .env               # Update database credentials configuration
                                   # (Dont forget to create database name following credentials configuration)
php artisan key:generate           # Generate new keys for Laravel
php artisan migrate:refresh --seed # Run migration and seed users and categories for testing
yarn install                       # Install node dependencies
npm run production                 # To compile assets for prod

Demo:

Login credentials:

please dont change this two users credential. u can add new user or modify other users.

All the data are reset each 30mn ;) please dont forget to remove this function in your app

Feature:

Included Packages:

Laravel (php):

JS plugins:

Page size optimization:

  • Using Laravel Mix, all CSS and JS are in minified to one file each.
  • Leverages browser caching, using .htaccess file from html5-boilerplate
  • GZip compression is activated by default(APP_DEBUG=false => only onfile for js, and one file for css).
    • admin-HASH.css: 63.9KB with gzip (376.5Kb without)
    • admin-HASH.js : 99KB with gzip (318.9Kb without)

#FAQ

Create new CRUD

Creating CRUD in your application is the job you do most. Let's create Post CRUD:

  • Add new migration and model : php artisan make:model Post -m
  • Open migration file and add your columns
  • Create PostsController : php artisan make:controller. fill your resource (you can use CategoriesController with some changes)
  • Duplicate resource/views/admin/categories folder to posts, make changes in index.php, create.blade.php, edit.blade.php

Move Image and file ?

To move images using a helper function based on intervention/image and variables.php check full example in User.php

Create new REST API

Rest Controllers are in the App\Http\Controllers\Api namespace.

  • Create new controller that extends ApiController class
  • Add your route in api/v1 route group
  • Add documentation block (documentation)
  • Install ApiDoc via npm, run: npm install apidoc -g (only first time)
  • Run this command : apidoc -i app/Http/Controllers/Api/ -o public/api/ -t resources/apiTemplate/

masjeeder-laravel's People

Contributors

ingearfa17 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.