Previous and next navigation buttons within Filament pages. These buttons, designed as Filament Header Actions, can seamlessly navigate through ViewPages and EditPages.
Clone the repo locally:
git clone https://github.com/leandrocfe/article-fi-page-nav.git && cd article-fi-page-nav
Install PHP dependencies:
composer install
Setup configuration:
cp .env.example .env
Generate application key:
php artisan key:generate
Configure the variables in the .env
file according to your local environment.
Run database migrations:
php artisan migrate --seed
Storage link:
php artisan storage:link
After the project has been built, start Laravel's local development server using the Laravel's Artisan CLI serve command:
php artisan serve
The application will be accessible on
http://localhost:8000/admin
or access the project url configured according to your local environment
http://article-fi-page-nav.test/admin
You may run the following command in your terminal:
./vendor/bin/pest
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.