Download the PHP package uzair3/attendance without Composer

On this page you can find all versions of the php package uzair3/attendance. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package attendance

  1. composer create-project laravel/laravel:^11.0 my-laravel-app
  2. in .env file set mysql connection...
  3. composer require uzair3/attendance and then php artisan migrate but following error came.
  4. specified key was too long issue was resolved by using Schema::defaultStringLength(191); in app\AppServiceProviders and "use Illuminate\Support\Facades\Schema;
  5. php artisan migrate to run all migrations.
  6. php artisan db:seed
  7. Authentication.... laravel ui authentication with bootstrap krnay k liay following commands run ki. -composer require laravel/ui command was run... -- php artisan ui bootstrap --auth ...it asked to replace controller "yes" kia -- npm install and npm run dev was run....

  8. Multi Role Authentication in Login Controller of main laravel application use Uzair3\Attendance\AuthRedirectsTrait;
    use Illuminate\Http\Request; use AuthRedirectsTrait trait by add this line as trait use AuthRedirectsTrait;

    in Register controller of main laravel application
    use Uzair3\Attendance\AuthRedirectsTrait; use Illuminate\Http\Request; use AuthRedirectsTrait; use it as a trait. protected function registered(Request $request, $user) { return $this->handleUserRedirection($user); }

  9. Package has Attendance ServiceProvider in uzair3/attendance/src/AttendanceServiceProvider in this file there are $this->publishes that need to be published so we run php artisan vendor:publish command. select Uzair3\Attendance\AttendanceServiceProvider and publish it.
  10. Soft Deletes User model in the host application must use Illuminate\Database\Eloquent\SoftDeletes. use Illuminate\Database\Eloquent\SoftDeletes;
    use HasFactory, Notifiable , SoftDeletes;
  11. php artisan storage:link command to link the storage folder in the public folder this will create a storage folder in public folder. and in your User modal you have to allow profile_image in $fillable array like this give below. protected $fillable = [ 'name', 'email', 'password', 'profile_image' ];
  12. automatic checkout php artisan schedule:work command can be run to automatic checkout after office closing time of office. for this to work your host application should have console.php and this file should have

    use Illuminate\Support\Facades\Schedule; and Schedule::command('checkout:cron')->dailyAt('21:05'); // Schedule::command('checkout:cron')->everyMinute();


All versions of attendance with dependencies

PHP Build Version
Package Version
No informations.
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package uzair3/attendance contains the following files

Loading the files please wait ....