Laravel Dealer Mobil dibangun dengan Framework Laravel 5.7 dan VueJs

Laravel Dealer Mobil akan membantu Anda mengatur situs mobil baru dan dealer marketing diseluruh provinsi yang akan dilihat oleh pengunjung.

**admin menginputkan data mobil
**admin menginpukan data pengguna
**admin menginputkan marketing dengan memilih pengguna juga memilih lokasi (provinsi dan kota) marketing tersebut.
**pengunjung atau calon pembeli mobil membuka website dealer mobil kemudian memilih lokasi (provinisi, kota) yang dinginkan disertai dengan memilih mobil (merek, model, tipe)
DEMO
Admin Login:
email: [email protected]
password: admin
INSTALLATION
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
// LARAVEL DEALER MOBIL INSTALLATION // Download Source Code and Extract // Switch to the dealer-mobil folder $ cd dealer-mobil // Install all the dependencies using composer $ composer install --prefer-dist // Copy the example env file and make the required configuration changes in the .env file $ cp .env.example .env // Generate a new application key $ php artisan key:generate // Change your database settings in .env DB_DATABASE=your_db_name DB_USERNAME=your_username_db DB_PASSWORD=your_password_db // Run the database migrations (Set the database connection in .env before migrating) $ php artisan migrate --seed // Start the local development server $ php artisan serve /* View your application in browser You can now access the server at http://localhost:8000 */ // END. |