CodeSleeve / laravel-stapler

Stapler-based file upload package for the Laravel framework.
MIT License
556 stars 109 forks source link

Trait method boot has not been applied, because there are collisions with other trait methods on App\User #104

Closed riliwanrabo closed 8 years ago

riliwanrabo commented 8 years ago

I used Entrust Package with Laravel stapler and it causes this error. I found solution with the code below :

use EloquentTrait, EntrustUserTrait {

    EloquentTrait::boot insteadof EntrustUserTrait; 
    EntrustUserTrait::boot insteadof EloquentTrait;

}

However, why i submit my form I expect the package to create a system directory in my app but no it doesn't though the database entry was successful

riliwanrabo commented 8 years ago

https://github.com/CodeSleeve/stapler/blob/master/docs/troubleshooting.md

I saw that late