Top
Poco Admin is a responsive Laravel 10 template that is based on blade Template. Blade is the simple, yet powerful templating engine. It will be easier to create multiple layouts and extend them in different pages, solving the problem of code repitation.We have used laravel vite-based build tools and scss variables-based modes along with RTL supported.Poco Laravel Admin Dashboard Template is easily customizable and developer-friendly code. It will help your team move faster and save development costs and valuable time.
Before you start working with the template, we suggest you go through the pages that are bundled with the theme. Most of the template example pages contain quick tips on how to create or use a component which can be really helpful when you need to create something on the fly.
Build your Laravel Project with poco , perfect choice for your laravel project. Poco laravel project is included with 2 version laravel starter kit and laravel full version. Poco laravel is build in Laravel 8.1 latest version with all features and assets. you can start project from scratch by laravel starter kit or rewamp your existing project with poco laravel admin template
The Laravel framework has a few system requirements. All of these requirements are satisfied by the Laravel Homestead virtual machine, so it's highly recommended that you use Homestead as your local Laravel development environment.
However, if you are not using Homestead, you will need to make sure your server meets the following requirements:
composer update
php artisan --version
php artisan key:generate
If you have PHP installed locally and you would like to use PHP's built-in development server to serve your application, you may use the serve Artisan command. This command will start a development server at http://localhost:8000:
php artisan serve
You need to know how laravel works in order to use this version. Check the Laravel 8 official documentation
The new minimum PHP version is now 8.1
Laravel latest version Upgrade Guide
ORUpdate the following dependencies in your composer.json file:
guzzlehttp/guzzle to ^7.5.0
facade/ignition to ^2.3.6
laravel/framework to ^10.4.1
laravel/ui to ^3.0
nunomaduro/collision to ^7.3.3
phpunit/phpunit to ^10.0.19
Example:
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.5.0",
"laravel/framework": "^10.4.1",
"laravel/sanctum": "^3.2.1",
"laravel/tinker": "^2.8.1"
},
"require-dev": {
"spatie/laravel-ignition": "^2.0",
"fakerphp/faker": "^1.21.0",
"laravel/sail": "^1.21.2",
"mockery/mockery": "^1.5.1",
"nunomaduro/collision": "^7.3.3",
"phpunit/phpunit": "^10.0.19"
},
Update php version & Check command
php -v
Example php -v command after:
PHP 8.2.1 (cli) (built: Jan 13 2023 10:43:08) (NTS)
Copyright (c) The PHP Group
Zend Engine v4.2.1, Copyright (c) Zend Technologies
with Zend OPcache v8.2.1, Copyright (c), by Zend Technologies
Use Minimum PHP 8.1 and also available PHP 8.2
composer update or composer installAfter successfully executing of composer update command check the Laravel version
php artisan --versionNow Need some Laravel Commands (old versions required)
php artisan key:generateIf you have PHP installed locally and you would like to use PHP's built-in development server to serve your application, you may use the serve Artisan command. This command will start a development server at http://localhost:8000:
php artisan serve