Template for Shopify Admin applications, built using Laravel, and Shopify Polaris
- Pull down the repository.
git clone https://github.com/robwittman/laravel-skeleton-app
-
Plug your app credentials and settings into
config/shopify.php
. -
Migrate the database, run seeds, and update configuration
php artisan migrate
php artisan db:seed
php artisan config:cache
- Visit the application, and go to
/shopify/install
. This loads a view where you can input a store name, and test the install!
The app is designed for the development of small applications. The Embedded Shopify app is loaded at /app
, an admin panel is located at /admin
, /api
serves API / AJAX requests, and any other routes would utilize the main site layout, useful for landing pages, FAQS, etc.