Is it possible to use php code in laravel? I find laravel very secure than plain php itself but the ADD, DELETE, UPDATE using multiple tables in laravel is kinda complicated, using plain PHP inside the laravel view would be my idea, is it possible?
These should be done in the Controller and/or Model Level. From your View you should simply pass a request to the Controller, and it would give you a response back into your View.