Posts

Showing posts with the label github

Laravel HRMS

Image
Introduction Advanced HRM involves everything related to the employer-employee relationship and is about supporting and managing the organisation’s people and associated processes. It’s seen as a core business function essential to the organisation’s effective operation. System Rquirements PHP >= 5.5.9 OpenSSL PHP Extension PDO PHP Extension Mbstring PHP Extension Tokenizer PHP Extension MySQL 5.x or later versions Installing Process With Built In Auto Installer 1: Unzip the Download File From Codecanyon. You will find two folders, One folder contains documentation & another is Application Files. 2: Upload the Entire Application folder to your website / server 3: Next you can rename the folder to whatever you like (HRM, Advanced-HRM etc..) 4: Now visit the uploaded location using your web browser to run the installer process. 5: Follow the instructions on screen to install Advanced HRM. On Successful Installation, You will be find the Login URL. 6: For securit

Steps to set up a new Laravel app, initialize a git repo, push to Github

Image
This is a list of steps to: Setup a new Laravel app Initialize a local repository using git Create a new remote repository using GitHub Change README.rdoc Assumptions: PHP is installed Composer is installed Git is installed Github account is established Setup a new Laravel app Navigate to the directory in which you want the new app created using 'change directory' (cd). Use the 'make directory' (mkdir) command if you want to create a new directory, such as laravel_projects (Note: Laravel will automatically create a directory for all your app files)   $ cd <correct_directory>   Create a new app. It's good practice to append your new app name with 'blog' so that it will not be confused with any classes you create later. Installing Laravel Laravel utilizes  Composer  to manage its dependencies. So, before using Laravel, make sure you have Composer installed on your machine. Via Laravel Installer