this is my test package

dev-master 2016-11-30 15:44 UTC

This package is not auto-updated.

Last update: 2024-04-27 17:47:50 UTC


README

package's home : alihossein/time

This package belong to Course "How to create a Laravel 5.3 package"

Installation:

Run below statements on your terminal :

STEP 1 :

composer require "alihossein/time":"dev-master"

STEP 2 : Add provider and facade in config/app.php

'providers' => [
  ...
  \Alihossein\Time\TimeServiceProvider::class, // <-- add this line at the end of provider array
],


'aliases' => [
  ...
  'MyTimerFacade'=>\Alihossein\Time\Facade\TimerFacade::class, // <-- add this line at the end of aliases array
]

Step 3:

php artisan vendor:publish

Step 4:

php artisan migrate

Configuration file is placed in config/MyConfig.php , open it and enter your Timezone: