Giter Site home page Giter Site logo

sikodoq / inventaris-persuratan Goto Github PK

View Code? Open in Web Editor NEW

This project forked from khaeruddinasdar12/inventaris-persuratan

0.0 0.0 0.0 2.16 MB

Aplikasi ini adalah aplikasi inventaris dan persuratan yang dirancang untuk organisasi kedai computerworks, sehingga data inputan dan output pun bersifat objektif yaitu data-data kedai computerworks misal no.registrasi anggota

PHP 67.14% TSQL 2.11% Vue 0.18% HTML 28.02% Hack 2.55%

inventaris-persuratan's Introduction

inventaris

  1. ini merupakan aplikasi inventaris menggunakan laravel 5.7, dan menggunakan ajax
  2. folder vendor tidak di upload, silakan gunakan aplikasi ini dengan menambahkan folder vendor laravel 5.7
  3. aplikasi ini menggunakan database mysql
  4. pastikan anda telah menginstal composer atau apapun untuk menjalankan laravel

Konfigurasi

  1. Download atau clone file ini

  2. pastikan step no. 2 diatas sudah di laksanakan.

  3. buka cmd lalu aktifkan direktori/folder yang telah Anda download.

  4. di aplikasi ini saya menggunakan yajra Datatables maka perlu Anda tambahkan di composer, ketik sebagai berikut di cmd

    composer require yajra/laravel-datatables-oracle:"~8.0"

    tambahkan kode ini di config/app.php

    'providers' => [ Yajra\DataTables\DataTablesServiceProvider::class, ]

    'aliases' => [ 'DataTables' => Yajra\DataTables\Facades\DataTables::class, ]

    lalu di cmd ketikkan

    php artisan vendor:publish

  5. silakan import file inventaris.sql ke database Anda karena sudah tersedia akun superadmin

  6. atau bisa juga dengan memanfaatkan CLI 'php artisan migrate', lalu masuk ke php artisan tinker untuk membuat akun dengan role = 'admin' atau 'superadmin' atau copy kode di bawah ini ke tinker, copy secara perbaris lalu enter

$data = new \App\User; $data->name = 'Yourname'; $data->email = 'Youremail'; $data->password = Hash::make('Yourpassword'); $data->roles = 'superadmin; $data->phone = '082123123123'; $data->noreg = '829.KD.XVII.18'; $data->save();

maka akan menghasilkan true lalu silakan login jika step no.5 dijalankan maka step no. 6 tidak diperlukan, karena Anda dapat menambahkan user setelah login. 7. agar Anda dapat mengakses file yang di upload oleh aplikasi, maka ketikkan di cmd 'php artisan storage:link' 8. lalu buka browser ketik 'localhost:8000' .... silakan login

note: aplikasi ini menggunakan library jquery online, dibutuhkan koneksi internet saat menjalankan aplikasi ini saat pertama kali.

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.