Panjeh·Jul 5, 2021Compiling OpenMP on MacOSNote: Apple does not include OpenMP in the clang they ship, and the gcc in mac os is just an alias to clang
Panjeh·Apr 28, 2021Pretty Laravel Routes in consoleThis package pretty-routes add a route:pretty command to your artisan console for pretty route output.
Panjeh·Apr 22, 2021Check whether a numpy array is empty or not?Numpy array has .size attribute. If it returns zero it means there are no elements in the array.
Panjeh·Mar 28, 2021First Run Failed Tests in Laravel phpFor phpunit test you need config a phpunit.xml file. You can set this little config in phpunit.xml and see how in the next run your, last…
Panjeh·Mar 15, 2021Setup MailHog with Laravel valet localhost or Laravel SailInstalling MailHogA response icon2A response icon2
Panjeh·Mar 13, 2021How to handle enums in Laravel databaseSuppose there are two models Patient and also Exam and the relationship between them is One To Many, I mean each patient can have many…
Panjeh·Mar 5, 2021Laravel routes controller action declarationI’ve just installed Laravel 8 besides Laravel Breeze and in auth.php file in the routes directory, I see how we should import the…