[RFC] Feature request - getting started project or video #185
Replies: 9 comments
-
php vendor/bin/Ubiquity controller home -v route is /Home ( H caps ) and not /home these type of practical application is missing from everywhere. |
Beta Was this translation helpful? Give feedback.
-
I agree, there are not enough tutorials and videos. the Guide:Some videoson Youtube: Ubiquity youtube chanel But it's imperfect (especially the videos that aren't very sexy), and in too limited number. Some demo applicationsonline: Another repo with some samples: About routesFor your capitalization problem on the routes, Via annotations or attributes <?php
namespace controllers;
use Ubiquity\attributes\items\router\Route;
class Home extends ControllerBase{
#[Route('/home')]
public function index(){
echo "route home";
}
} The cache must then be re-initialised to be effective: Ubiquity init-cache This part is documented in the guide |
Beta Was this translation helpful? Give feedback.
-
This looks like a great framework, and you are putting all the hard work .. but if people who want to start cannot start, then all the hard work you and your team is doing is for nothing .. you keep on writhing this framework, but no one is able to use it. I suggest to maybe take one Friday off from coding and actually record your screen when you ( in english ) do a step by step demo of a basic CURD application with a mysql backend. That should help a lot of people. I started with plain PHP, then moved to code igniter 3,then to symfony and now doing symfony and codeignither 4 , and trying to start on this and I struggle with the framework on what I want to do and how it works. Your one video of a basic application with tips and tricks ( because you know this framework better then others) will really help people like me out there who want to start on this. |
Beta Was this translation helpful? Give feedback.
-
Thanks @a1git |
Beta Was this translation helpful? Give feedback.
-
https://www.youtube.com/watch?v=BKFwO6xZ3Ok Ubiquity Tutorial videos on this french channel (captions can be auto-translated to english), hope it can help. Regards, |
Beta Was this translation helpful? Give feedback.
-
I know that video is a preferred support for the younger generation. Videos have more of a marketing impact than an educational one. This does not mean that they should be totally abandoned. |
Beta Was this translation helpful? Give feedback.
-
I agree and disagree. I agree that documentation is the best and yes, we need to have good documentation. but people will look into documentation only when they are interested and see the value the framework and can get started on it to get the basics done. |
Beta Was this translation helpful? Give feedback.
-
Well, it took me more than one Friday... |
Beta Was this translation helpful? Give feedback.
-
It has been very useful and this is a good start. Waiting for more :) |
Beta Was this translation helpful? Give feedback.
-
I want to get started in this framework, but there are no proper demos or videos on how to actually get started.
The demo can be as simple as creating a new controller, making it accessible via a route, connecting to the DB and doing select,update, delete etc.
Can someone point me to the proper documentation or video what gives an idea of how to actually get started on this.
Beta Was this translation helpful? Give feedback.
All reactions