Langsung ke konten utama

Laravel 5 example

Laravel 5 example


For Laravel 5.3 improved version look at this repository.

Laravel 5 example is a tutorial application for Laravel 5.2 (in french there).

Installation




    • git clone https://github.com/bestmomo/laravel5-example.git projectname

    • cd projectname

    • composer install

    • php artisan key:generate

    • Create a database and inform .env

    • php artisan migrate --seed to create and populate tables

    • Inform config/mail.php for email sends

    • php artisan vendor:publish to publish filemanager

    • php artisan serve to start the app on http://localhost:8000/




[java]composer create-project laravel/laravel laravelapp --prefer-dist[/java]


Another cool way to install it is to upload this package, unpack it in your server folder, and just launch it and follow the installation windows. It has been created with my laravel installer package. Anyway you'll have to set the email configuration.

Nitrous Quickstart


Create a free development environment for this Laravel 5 example project in the cloud on Nitrous.io by clicking the button below.

Nitrous Quickstart

In the IDE, start Laravel 5 Example via Run > Start Laravel 5 Example and access your site via Preview > 8000.

Include



Features



  • Home page

  • Custom Error Page 404

  • Authentication (registration, login, logout, password reset, mail confirmation, throttle)

  • Users roles : administrator (all access), redactor (create and edit post, upload and use medias in personnal directory), and user (create comment in blog)

  • Blog with comments

  • Search in posts

  • Tags on posts

  • Contact us page

  • Admin dashboard with new messages, users, posts and comments

  • Users admin (roles filter, show, edit, delete, create)

  • Messages admin

  • Posts admin (list with dynamic order, show, edit, delete, create)

  • Medias gestion

  • Localisation


Packages included



  • laravelcollective/html

  • bestmomo/filemanager


Tricks


To test application the database is seeding with users :

Komentar

  1. Appreciate you sharing, great blog post.Much thanks again. Cool.

    BalasHapus
  2. Thank You For Visiting My Blog.

    BalasHapus

Posting Komentar

Postingan populer dari blog ini

sys.processes Status sp_who2 SQL Server

Taken from the books online reference for sys.processes  and the status column. dormant = SQL Server is resetting the session. running = The session is running one or more batches. When Multiple Active Result Sets (MARS) is enabled, a session can run multiple batches. For more information, see Using Multiple Active Result Sets (MARS). background = The session is running a background task, such as deadlock detection. rollback = The session has a transaction rollback in process. pending = The session is waiting for a worker thread to become available. runnable = The task in the session is in the runnable queue of a scheduler while waiting to get a time quantum. spinloop = The task in the session is waiting for a spinlock to become free. suspended = The session is waiting for an event, such as I/O, to complete.