Package Data | |
---|---|
Maintainer Username: | neilcrookes |
Maintainer Contact: | neil.crookes@fivebyfiveuk.com (Neil Crookes) |
Package Create Date: | 2013-11-19 |
Package Last Update: | 2020-10-14 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-02-17 03:23:21 |
Package Statistics | |
---|---|
Total Downloads: | 187 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 23 |
Total Watchers: | 7 |
Total Forks: | 18 |
Total Open Issues: | 11 |
A Laravel 4 package for adding jobs listings to a website
Add the following to you composer.json file
"fbf/laravel-jobs": "dev-master"
Run
composer update
Add the following to app/config/app.php
'Fbf\LaravelJobs\LaravelJobsServiceProvider'
Publish the config
php artisan config:publish fbf/laravel-jobs
Run the migration
php artisan migrate --package="fbf/laravel-jobs"
Optionally copy the administrator config to your administrators model config directory, if you have one
There are loads of options in the config file, check it out.
You can use the excellent Laravel Administrator package by frozennode to administer your jobs.
http://administrator.frozennode.com/docs/installation
A ready-to-use model config file for the Job model (jobs.php) is provided in the src/config/administrator directory of the package, which you can copy into the app/config/administrator directory (or whatever you set as the model_config_path in the administrator config file).
The package comes with a seed that can populate the table with a whole bunch of sample jobs. To run it:
php artisan db:seed --class="Fbf\LaravelJobs\JobsTableFakeSeeder"