Skip to content

Latest commit

 

History

History
65 lines (51 loc) · 1.61 KB

File metadata and controls

65 lines (51 loc) · 1.61 KB

Inventory Management System (Laravel)

Laravel Logo

About This Project

This is a simple Inventory Management Web Application built with Laravel.
It includes core CRUD functionality and user authentication (Login & Logout).

Main Features

  • User authentication (Login / Logout)
  • CRUD operations for Posts (representing inventory items)

Features Overview

Feature Description
Authentication Secure login and logout for users
CRUD Posts Create, Read, Update, and Delete posts/items

Installation Steps

  1. Clone the repository

    git clone https://github.com/username/repo.git
    cd repo
    
  2. Install dependencies

    composer install
    npm install && npm run dev
    
  3. Create your environment file

    cp .env.example .env
    php artisan key:generate
    
  4. Configure your database Open .env and set your database credentials.

  5. Run migrations

    php artisan migrate
  6. Start the development server

    php artisan serve
  7. Open your browser and visit:

    http://localhost:8000
    

Usage Guide

  1. Register a new user or log in with an existing account
  2. Add a new item via the “Add Barang” nav
  3. Edit or delete items directly from the list
  4. View your inventory neatly on the Barang

Tech Stack

  • Laravel 10
  • MySQL
  • Blade Templates
  • TailwindCSS