Alexandre Approved

Member since: 2015-06-11

Recent posts by Alexandre
Post When

I have a CMS page with url /dashboard. Only users with certain session key can access this page. If...

Posted in How provide a convenient mechanism for filtering HTTP requests?

How I can provide a convenient mechanism for filtering HTTP requests entering my application?

The co...

Posted in How provide a convenient mechanism for filtering HTTP requests?

With debug in mode false the system renders \error page by default.

The problem is cause I can't sho...

Posted in Display custom message for status code in error page

First, I'm new in Symfony/Laravel/October apps.

I'm using a lot of themes/plugins/components feature...

Posted in What happens if i disable some module

Ever when new file is attached, older attachments remains on disk

How replace it?

Posted in How to remove old attachment after attach new file

i can upload files without october plugins or framework.js, see:

basic markup

{{ form_open({ files: ...

Posted in Frontend File upload [resolved]

{{  ''|page }} // http://dev.localhost:3000

{{ 'page'|page }} // null

{{ 'page'|page({ slug: 'test...

Posted in Page filter not working

ok, consider that the best way for now

inside my program database table string('slug', 255)

and insi...

Posted in How to save slugged attribute on database?

well, i could not make it work so above my workaround

$model = new Program;
$model->title = 'title ...

Posted in How to save slugged attribute on database?

now i have added to $fillable slug and title

protected $fillable = ['slug', 'title'];

and the slug c...

Posted in How to save slugged attribute on database?