| Package Data | |
|---|---|
| Maintainer Username: | alexwenzel | 
| Maintainer Contact: | alexander.wenzel.berlin@gmail.com (alexwenzel) | 
| Package Create Date: | 2014-07-25 | 
| Package Last Update: | 2014-10-20 | 
| Home Page: | |
| Language: | PHP | 
| License: | Unknown | 
| Last Refreshed: | 2025-11-03 15:16:08 | 
| Package Statistics | |
|---|---|
| Total Downloads: | 17 | 
| Monthly Downloads: | 0 | 
| Daily Downloads: | 0 | 
| Total Stars: | 1 | 
| Total Watchers: | 1 | 
| Total Forks: | 0 | 
| Total Open Issues: | 0 | 
A package for Laravel, which I use to build repetitive resource Items.
Create a model for your new resource item.
The resource model should have a static $rules property, which contain all resource rules.
class Post extends \Eloquent {
  protected $table = 'posts';
  protected $fillable = ['title', 'body'];
  public static $rules = [
    'title' => 'required',
    'body' => 'required',
  ];
}
Create a new controller by extending the base resource controller. In the constructor you can specify some settings.
dependency => your resource item's modelresource_name => the identifier of your resource, the one you use at Route::resource()
view_dir => path to the rescource viewsuse Alexwenzel\Cmsbasics\Controllers\Resource;
class PostsController extends Resource {
  public function __construct(Post $model)
  {
    parent::__construct([
      'dependency'    => $model,
      'resource_name' => 'posts',
      'view_dir'      => 'path.to.views',
    ]);
  }
}
Then register the controller in your routes.
Route::resource('posts', 'PostsController');
You cann customize the behaviour of the base resource controller by overriding specific methods
protected function _index_items()
protected function _store_data()
protected function _store_validator($data)
protected function _store_fails($data, $validator)
protected function _store_finished($data, $model)
protected function _update_data()
protected function _update_validator($id, $data)
protected function _update_fails($data, $model, $validator)
protected function _update_finished($data, $model)
protected function _destroy_finished()
The following Events are fired within the base resource controller:
index
[resource_name].index
create
[resource_name].create
store
[resource_name].store
Passes the newly created resource as the first argument.
show
[resource_name].show
Passes the requested resource as the first argument.
edit
[resource_name].edit
Passes the requested resource as the first argument.
update
[resource_name].update
Passes the updated resource as the first argument.
destroy
[resource_name].destroy
This package comes with default views for all actions (index, create, show, edit). Publish the package views as a starting point.
php artisan view:publish alexwenzel/cmsbasics
Copy the package views to a new folder and customize them.
class PostsController extends Resource {
  public function __construct(Post $model)
  {
    parent::__construct([
      'dependency'    => $model,
      'resource_name' => 'posts',
      'view_dir'      => 'path.to.views',
    ]);
  }
}