tifoysal / bangladesh-universities
Laravel package for all Universities in Bangladesh
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/tifoysal/bangladesh-universities
This package is auto-updated.
Last update: 2025-10-14 04:11:56 UTC
README
Installation
You can install the package via composer:
composer require tifoysal/bangladesh-universities
Setup everything with just running one artisan command
php artisan BangladeshUniversity:setup
Usage
use Tifoysal\BangladeshUniversities\Models\University;
$universities = University::all();
$university = University::where('name', 'International University of Business Agriculture and Technology')->first();
$universitiesByLocation = University::where('location', 'Dhaka')->get();
Use any Laravel (eluquent) model functions