Simple laravel5 example for tutorial

Overview

Laravel 5 example

For Laravel 5.3 improved version look at this repository.

Laravel 5 example is a tutorial application for Laravel 5.2 (in french there).

Installation

  • git clone https://github.com/bestmomo/laravel5-example.git projectname
  • cd projectname
  • composer install
  • php artisan key:generate
  • Create a database and inform .env
  • php artisan migrate --seed to create and populate tables
  • Inform config/mail.php for email sends
  • php artisan vendor:publish to publish filemanager
  • php artisan serve to start the app on http://localhost:8000/

Another cool way to install it is to upload this package, unpack it in your server folder, and just launch it and follow the installation windows. It has been created with my laravel installer package. Anyway you'll have to set the email configuration.

Nitrous Quickstart

Create a free development environment for this Laravel 5 example project in the cloud on Nitrous.io by clicking the button below.

Nitrous Quickstart

In the IDE, start Laravel 5 Example via Run > Start Laravel 5 Example and access your site via Preview > 8000.

Include

Features

  • Home page
  • Custom Error Page 404
  • Authentication (registration, login, logout, password reset, mail confirmation, throttle)
  • Users roles : administrator (all access), redactor (create and edit post, upload and use medias in personnal directory), and user (create comment in blog)
  • Blog with comments
  • Search in posts
  • Tags on posts
  • Contact us page
  • Admin dashboard with new messages, users, posts and comments
  • Users admin (roles filter, show, edit, delete, create)
  • Messages admin
  • Posts admin (list with dynamic order, show, edit, delete, create)
  • Medias gestion
  • Localisation

Packages included

  • laravelcollective/html
  • bestmomo/filemanager

Tricks

To test application the database is seeding with users :

Comments
  • Select Image for user profile

    Select Image for user profile

    Hi Bestmomo, seems I've really been 'issue raising' this past few days. I'm trying to allow the user to select an image from the file manager and I have implemented it to open the manager in a window similar to how the ckeditor picture plugin does, how ever, the select option is not showing up.

    Essentially I have a button - select image - routed like you did with the medias button on your dashboard code, that opens a window based on the following script:

        var urlobj;
    
        function BrowseServer(obj)
        {
            urlobj = obj;
            OpenServerBrowser(
                    '../../filemanager',
                    screen.width * 0.7,
                    screen.height * 0.7 ) ;
        }
    
        function OpenServerBrowser( url, width, height )
        {
            var iLeft = (screen.width - width) / 2 ;
            var iTop = (screen.height - height) / 2 ;
            var sOptions = "toolbar=no,status=no,resizable=yes,dependent=yes" ;
            sOptions += ",width=" + width ;
            sOptions += ",height=" + height ;
            sOptions += ",left=" + iLeft ;
            sOptions += ",top=" + iTop ;
            var oWindow = window.open( url, "BrowseWindow", sOptions ) ;
        }
    
        function SetUrl( url, width, height, alt )
        {
            document.getElementById(urlobj).value = url ;
            oWindow = null;
        }
    

    the window is loaded with my filemanager.blade view and displays the file manager porperly, but the select button is not available and I need this to get the image url. Thanks in advance!

    opened by lon-io 12
  • php artisan route:scan not working

    php artisan route:scan not working

    I've followed all steps to install the project. But when I do php artisan route:scan following error occurs:

    Exception with message Class Doctrine\Common\AnnotationRegistry not found

    I've attached a screenshot of the error for your convenience.

    issue

    opened by mh-jamil 12
  • proposal: multiple roles for users (privileges)

    proposal: multiple roles for users (privileges)

    Your starter site is absolutely great. Would you consider to implement multiple roles for users - just as in a Laravel starter site from here: https://github.com/andrewelkins/Laravel-4-Bootstrap-Starter-Site

    If the roles are handled like privileges, it gives much more flexibility.

    Thx

    opened by UnrulyNatives 10
  •   ErrorException in UserRepository.php line 53

    ErrorException in UserRepository.php line 53

    Hi,

    When I registered a new user, I got the error messages as below.

    ErrorException in UserRepository.php line 53 Trying to get property of non-object

    1. in UserRepository.php line 53 2.at HandleExceptions->handleError('8', 'Trying to get property of non-object', 'C:\xampp\htdocs\laravel5-example\app\Repositories\UserRepository.php', '53', array('user' => object(User), 'inputs' => array('_token' => 'ETs1bfntR5oslSfENuxHHhhXorNaJY1WPQxHwzt9', 'username' => 'Evans', 'email' => '[email protected]', 'password' => '12qwaszx', 'password_confirmation' => '12qwaszx', 'address' => ''), 'role_user' => null)) in UserRepository.php line 53 3.at UserRepository->save(object(User), array('_token' => 'ETs1bfntR5oslSfENuxHHhhXorNaJY1WPQxHwzt9', 'username' => 'Evans', 'email' => '[email protected]', 'password' => '12qwaszx', 'password_confirmation' => '12qwaszx', 'address' => '')) in UserRepository.php line 145 4.at UserRepository->store(array('_token' => 'ETs1bfntR5oslSfENuxHHhhXorNaJY1WPQxHwzt9', 'username' => 'Evans', 'email' => '[email protected]', 'password' => '12qwaszx', 'password_confirmation' => '12qwaszx', 'address' => ''), 'J2wwFd2WPsWM0g8BaQb51DxbCPa2lM') in AuthController.php line 108 5.at AuthController->postRegister(object(RegisterRequest), object(UserRepository)) 6.at call_user_func_array(array(object(AuthController), 'postRegister'), array(object(RegisterRequest), object(UserRepository))) in Controller.php line 256 7.at Controller->callAction('postRegister', array(object(RegisterRequest), object(UserRepository))) in ControllerDispatcher.php line 164 8.at ControllerDispatcher->call(object(AuthController), object(Route), 'postRegister') in ControllerDispatcher.php line 112 9.at ControllerDispatcher->Illuminate\Routing{closure}(object(Request)) 10.at call_user_func(object(Closure), object(Request)) in Pipeline.php line 139 11.at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in RedirectIfAuthenticated.php line 41 12.at RedirectIfAuthenticated->handle(object(Request), object(Closure)) 13.at call_user_func_array(array(object(RedirectIfAuthenticated), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 124 14.at Pipeline->Illuminate\Pipeline{closure}(object(Request)) 15.at call_user_func(object(Closure), object(Request)) in Pipeline.php line 103 16.at Pipeline->then(object(Closure)) in ControllerDispatcher.php line 114 17.at ControllerDispatcher->callWithinStack(object(AuthController), object(Route), object(Request), 'postRegister') in ControllerDispatcher.php line 69 18.at ControllerDispatcher->dispatch(object(Route), object(Request), 'App\Http\Controllers\Auth\AuthController', 'postRegister') in Route.php line 203 19.at Route->runWithCustomDispatcher(object(Request)) in Route.php line 134 20.at Route->run(object(Request)) in Router.php line 708 21.at Router->Illuminate\Routing{closure}(object(Request)) 22.at call_user_func(object(Closure), object(Request)) in Pipeline.php line 139 23.at Pipeline->Illuminate\Pipeline{closure}(object(Request)) 24.at call_user_func(object(Closure), object(Request)) in Pipeline.php line 103 25.at Pipeline->then(object(Closure)) in Router.php line 710 26.at Router->runRouteWithinStack(object(Route), object(Request)) in Router.php line 675 27.at Router->dispatchToRoute(object(Request)) in Router.php line 635 28.at Router->dispatch(object(Request)) in Kernel.php line 236 29.at Kernel->Illuminate\Foundation\Http{closure}(object(Request)) 30.at call_user_func(object(Closure), object(Request)) in Pipeline.php line 139 31.at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in App.php line 56 32.at App->handle(object(Request), object(Closure)) 33.at call_user_func_array(array(object(App), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 124 34.at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in VerifyCsrfToken.php line 50 35.at VerifyCsrfToken->handle(object(Request), object(Closure)) in VerifyCsrfToken.php line 17 36.at VerifyCsrfToken->handle(object(Request), object(Closure)) 37.at call_user_func_array(array(object(VerifyCsrfToken), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 124 38.at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in ShareErrorsFromSession.php line 49 39.at ShareErrorsFromSession->handle(object(Request), object(Closure)) 40.at call_user_func_array(array(object(ShareErrorsFromSession), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 124 41.at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in StartSession.php line 62 42.at StartSession->handle(object(Request), object(Closure)) 43.at call_user_func_array(array(object(StartSession), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 124 44.at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in AddQueuedCookiesToResponse.php line 37 45.at AddQueuedCookiesToResponse->handle(object(Request), object(Closure)) 46.at call_user_func_array(array(object(AddQueuedCookiesToResponse), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 124 47.at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in EncryptCookies.php line 59 48.at EncryptCookies->handle(object(Request), object(Closure)) 49.at call_user_func_array(array(object(EncryptCookies), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 124 50.at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in CheckForMaintenanceMode.php line 44 51.at CheckForMaintenanceMode->handle(object(Request), object(Closure)) 52.at call_user_func_array(array(object(CheckForMaintenanceMode), 'handle'), array(object(Request), object(Closure))) in Pipeline.php line 124 53.at Pipeline->Illuminate\Pipeline{closure}(object(Request)) 54.at call_user_func(object(Closure), object(Request)) in Pipeline.php line 103 55.at Pipeline->then(object(Closure)) in Kernel.php line 122 56.at Kernel->sendRequestThroughRouter(object(Request)) in Kernel.php line 87 57.at Kernel->handle(object(Request)) in index.php line 53

    Is anything I need to edit or fix? Thanks

    opened by chenchaochen 7
  • Add user

    Add user

    Hi, I logined with Adminstrator role. I acces Administration Panel and add new user. I get a error about miss argurment. Can you help me to fix it? Thanks!

    opened by ghost 6
  • instructions for database connection

    instructions for database connection

    Hi there,

    I'm new to laravel, mostly write node.js/javascript. I have a mac, not sure how to create a database.

    Ran

    $ php artisan migrate --seed
    
      [PDOException]                                    
      SQLSTATE[HY000] [2002] No such file or directory  
    

    Then I changed the .env file to DB_HOST=127.0.0.1 as mentioned in this SO post. Now I get a different error:

    $ php artisan migrate --seed
    
    
      [PDOException]                             
      SQLSTATE[HY000] [2002] Connection refused  
    

    I have not run any mysql or postgres commands yet. What commands do I need to run in order to get rid of the Connection refused error and populate the database?

    opened by connor11528 5
  • Dropdown Navigation

    Dropdown Navigation

    I want to create a navigation with dropdown in you template.blade.php. I used class="dropdown" in bootstrap and add CDN bootstrap but it not working. Can you help me? PS: sorry about my bad english grammar.

    opened by ghost 5
  • Nitrous.io Quickstart - Something went wrong.

    Nitrous.io Quickstart - Something went wrong.

    Launching “laravel5-example”… Something went wrong. Open IDE anyway.

    Querying the GitHub API for https://github.com/bestmomo/laravel5-example...     
    OK - GitHub says https://github.com/bestmomo/laravel5-example is legit.         
    Creating project on workstation "anonym"...                              
    OK - project "laravel5-example" created.                                        
    Cloning https://github.com/bestmomo/laravel5-example to home directory on "larav
    el5-example"...                                                                 
    Cloning into 'laravel5-example'...                                              
    remote: Counting objects: 4495, done.                                           
    remote: Total 4495 (delta 0), reused 0 (delta 0), pack-reused 4494              
    Receiving objects: 100% (4495/4495), 7.72 MiB | 344.00 KiB/s, done.             
    Resolving deltas: 100% (1858/1858), done.                                       
    Checking connectivity... done.                                                  
    OK - Cloned repository.                                                         
    Executing post-create script...                                                 
    Loading composer repositories with package information                          
    Updating dependencies (including require-dev)                                   
    Your requirements could not be resolved to an installable set of packages.     
     Problem 1                                                                     
        - laravel/framework v5.2.9 requires ext-mbstring * -> the requested PHP exte
    nsion mbstring is missing from your system.                                     
        - laravel/framework v5.2.8 requires ext-mbstring * -> the requested PHP exte
    nsion mbstring is missing from your system.                                     
        - laravel/framework v5.2.7 requires ext-mbstring * -> the requested PHP exte
    nsion mbstring is missing from your system.                                     
        - laravel/framework v5.2.6 requires ext-mbstring * -> the requested PHP exte
    nsion mbstring is missing from your system.                                     
        - laravel/framework v5.2.5 requires ext-mbstring * -> the requested PHP exte
    nsion mbstring is missing from your system.                                     
        - laravel/framework v5.2.4 requires ext-mbstring * -> the requested PHP exte
    nsion mbstring is missing from your system.                                     
        - laravel/framework v5.2.32 requires ext-mbstring * -> the requested PHP ext
    ension mbstring is missing from your system.        
        - laravel/framework v5.2.31 requires ext-mbstring * -> the requested PHP ext
    ension mbstring is missing from your system.                                    
        - laravel/framework v5.2.30 requires ext-mbstring * -> the requested PHP ext
    ension mbstring is missing from your system.                                    
        - laravel/framework v5.2.3 requires ext-mbstring * -> the requested PHP exte
    nsion mbstring is missing from your system.                                     
        - laravel/framework v5.2.29 requires ext-mbstring * -> the requested PHP ext
    ension mbstring is missing from your system.                                    
        - laravel/framework v5.2.28 requires ext-mbstring * -> the requested PHP ext
    ension mbstring is missing from your system.                                    
        - laravel/framework v5.2.27 requires ext-mbstring * -> the requested PHP ext
    ension mbstring is missing from your system.                                    
        - laravel/framework v5.2.26 requires ext-mbstring * -> the requested PHP ext
    ension mbstring is missing from your system.                                    
        - laravel/framework v5.2.25 requires ext-mbstring * -> the requested PHP ext
    ension mbstring is missing from your system.                                    
        - laravel/framework v5.2.24 requires ext-mbstring * -> the requested PHP ext
    ension mbstring is missing from your system.                                    
        - laravel/framework v5.2.23 requires ext-mbstring * -> the requested PHP ext
    ension mbstring is missing from your system.                                    
     - laravel/framework v5.2.22 requires ext-mbstring * -> the requested PHP ext
    ension mbstring is missing from your system.                                    
        - laravel/framework v5.2.21 requires ext-mbstring * -> the requested PHP ext
    ension mbstring is missing from your system.                                    
        - laravel/framework v5.2.20 requires ext-mbstring * -> the requested PHP ext
    ension mbstring is missing from your system.                                    
        - laravel/framework v5.2.2 requires ext-mbstring * -> the requested PHP exte
    nsion mbstring is missing from your system.                                     
        - laravel/framework v5.2.19 requires ext-mbstring * -> the requested PHP ext
    ension mbstring is missing from your system.                                    
        - laravel/framework v5.2.18 requires ext-mbstring * -> the requested PHP ext
    ension mbstring is missing from your system.                                    
        - laravel/framework v5.2.17 requires ext-mbstring * -> the requested PHP ext
    ension mbstring is missing from your system.                                    
        - laravel/framework v5.2.16 requires ext-mbstring * -> the requested PHP ext
    ension mbstring is missing from your system.                                    
        - laravel/framework v5.2.15 requires ext-mbstring * -> the requested PHP ext
    ension mbstring is missing from your system.                                    
        - laravel/framework v5.2.14 requires ext-mbstring * -> the requested PHP ext
    ension mbstring is missing from your system.                        
    - laravel/framework v5.2.13 requires ext-mbstring * -> the requested PHP ext
    ension mbstring is missing from your system.                                    
        - laravel/framework v5.2.12 requires ext-mbstring * -> the requested PHP ext
    ension mbstring is missing from your system.                                    
        - laravel/framework v5.2.11 requires ext-mbstring * -> the requested PHP ext
    ension mbstring is missing from your system.                                    
        - laravel/framework v5.2.10 requires ext-mbstring * -> the requested PHP ext
    ension mbstring is missing from your system.                                    
        - laravel/framework v5.2.1 requires ext-mbstring * -> the requested PHP exte
    nsion mbstring is missing from your system.                                     
        - laravel/framework v5.2.0 requires ext-mbstring * -> the requested PHP exte
    nsion mbstring is missing from your system.                                     
        - Installation request for laravel/framework 5.2.* -> satisfiable by laravel
    /framework[v5.2.0, v5.2.1, v5.2.10, v5.2.11, v5.2.12, v5.2.13, v5.2.14, v5.2.15,
     v5.2.16, v5.2.17, v5.2.18, v5.2.19, v5.2.2, v5.2.20, v5.2.21, v5.2.22, v5.2.23,
     v5.2.24, v5.2.25, v5.2.26, v5.2.27, v5.2.28, v5.2.29, v5.2.3, v5.2.30, v5.2.31,
     v5.2.32, v5.2.4, v5.2.5, v5.2.6, v5.2.7, v5.2.8, v5.2.9].       
     To enable extensions, verify that they are enabled in those .ini files:       
        - /etc/php/7.0/cli/php.ini                                                  
        - /etc/php/7.0/cli/conf.d/10-mysqlnd.ini                                    
        - /etc/php/7.0/cli/conf.d/10-opcache.ini                                    
        - /etc/php/7.0/cli/conf.d/10-pdo.ini                                        
        - /etc/php/7.0/cli/conf.d/15-xml.ini                                        
        - /etc/php/7.0/cli/conf.d/20-calendar.ini                                   
        - /etc/php/7.0/cli/conf.d/20-ctype.ini                                      
        - /etc/php/7.0/cli/conf.d/20-curl.ini                                       
        - /etc/php/7.0/cli/conf.d/20-dom.ini                                        
        - /etc/php/7.0/cli/conf.d/20-exif.ini                                       
        - /etc/php/7.0/cli/conf.d/20-fileinfo.ini                                   
        - /etc/php/7.0/cli/conf.d/20-ftp.ini                                        
        - /etc/php/7.0/cli/conf.d/20-gd.ini                                         
        - /etc/php/7.0/cli/conf.d/20-gettext.ini                                    
        - /etc/php/7.0/cli/conf.d/20-iconv.ini                                      
        - /etc/php/7.0/cli/conf.d/20-intl.ini                                       
        - /etc/php/7.0/cli/conf.d/20-json.ini                                       
        - /etc/php/7.0/cli/conf.d/20-mcrypt.ini                                     
        - /etc/php/7.0/cli/conf.d/20-mysqli.ini                                     
        - /etc/php/7.0/cli/conf.d/20-pdo_mysql.ini                                  
        - /etc/php/7.0/cli/conf.d/20-phar.ini                
        - /etc/php/7.0/cli/conf.d/20-posix.ini                                      
        - /etc/php/7.0/cli/conf.d/20-readline.ini                                   
        - /etc/php/7.0/cli/conf.d/20-shmop.ini                                      
        - /etc/php/7.0/cli/conf.d/20-simplexml.ini                                  
        - /etc/php/7.0/cli/conf.d/20-sockets.ini                                    
        - /etc/php/7.0/cli/conf.d/20-sysvmsg.ini                                    
        - /etc/php/7.0/cli/conf.d/20-sysvsem.ini                                    
        - /etc/php/7.0/cli/conf.d/20-sysvshm.ini                                    
        - /etc/php/7.0/cli/conf.d/20-tokenizer.ini                                  
        - /etc/php/7.0/cli/conf.d/20-wddx.ini                                       
        - /etc/php/7.0/cli/conf.d/20-xmlreader.ini                                  
        - /etc/php/7.0/cli/conf.d/20-xmlwriter.ini                                  
        - /etc/php/7.0/cli/conf.d/20-xsl.ini                                        
      You can also run `php --ini` inside terminal to see which files are used by PH
    P in CLI mode.                                                                  
    Exited with non-zero code.                                                      
    
    
    opened by cryptocoinserver 3
  • User Folder access

    User Folder access

    Hi, this is not exactly an issue, but I've been trying to implement folder access based on user in my web app using this example as a template. I want each user to have a new folder based off the username in the userfiles directory upon creation and be able to access only that folder. I can't get my head around how to do that and also how the functions accessMediasFolder() and accessMediasAll() are working with the filemanager. I am using ckeditor and FileManager(v 2.3.0).

    opened by lon-io 3
  • Search doesn't display results

    Search doesn't display results

    I just changed the design and reverted back to default bootstrap. I haven't changed anything else other than the views. It looks like everything is working, from comments, blog posts, approving comments... except the search.

    If I search for Post 1 I get a blue notification saying Posts found with search Post 1 but it displays no results. If I search for jdfghgh I get the same thing.

    opened by geosemaan 3
  • TokenMismatchException in VerifyCsrfToken.php line 53:

    TokenMismatchException in VerifyCsrfToken.php line 53:

    Hi,

    I'm trying your example on Platform.sh, and I got the following error when logging in:

    TokenMismatchException in VerifyCsrfToken.php line 53
    

    You can check my site here or my fork loading the proper Platform.sh database configuration.

    Thanks,

    GuGuss

    opened by GuGuss 3
  • how can i deploy it to heroku?

    how can i deploy it to heroku?

    when i try to deploy to heroku it shows me : [PDOException] SQLSTATE[HY000] [2002] No such file or directory I have tried mysql db through cleardb in heroku but no success.. do you have a guide for safe deploying it?

    opened by dkapexhiu 0
  • .vscode folder

    .vscode folder

    Is the .vscode root folder required in this project? I think separating IDE config from the repository is a good practice. Are there any reasons this folder exists here?

    opened by axelbest 1
  • Missing few things

    Missing few things

    Hey guys.... how's going? Hope ok

    Amazing project you have, I set everything way faster than the lazy Wordpress... =)

    Well. I'm missing a few things, like

    • post categories
    • tag manager
    • Be able to change from /blog to whatever I want in Permalink
    • Use Markdown

    For instance, I think this might be a nice addtion =)

    opened by tofanelli 1
Owner
null
Roach-example-project - Example project to demonstrate how to use RoachPHP in a Laravel project.

Example repository to illustrate how to use roach-php/laravel in a Laravel app. Check app/Spiders/FussballdatenSpider.php for an example spider that c

Kai Sassnowski 11 Dec 15, 2022
Code to accompany the YouTube video "Full PHP cURL API tutorial - how to use a REST API from PHP using cURL"

PHP cURL CRUD Example Example code to accompany this YouTube video. Note that the init_curl.php file contains a placeholder for an API key. DO NOT che

Dave Hollingworth 14 Dec 24, 2022
Viewi - Tour of Heroes app and tutorial

Viewi - Tour of Heroes app and tutorial

Ivan Voitovych 9 Oct 3, 2022
Michael Pratt 307 Dec 23, 2022
The game is implemented as an example of scalable and high load architecture combined with modern software development practices

Crossword game The game is implemented as an example of scalable and high load architecture combined with modern software development practices Exampl

Roman 56 Oct 27, 2022
my personal example of Laravel clean architecture

what is this repo about Clean Architect Laravel ###run we assume docker desktop is up and running open up a terminal cd project directory run "cp .env

Sadegh Salari 37 Dec 23, 2022
A sample project to showcase a real world example and benchmarks for crowphp

CrowPHP Sample project This project is to showcase an example of how a real world project might look like. It has two basic endpoints to show-case the

Crow PHP 3 Aug 16, 2021
TYPO3 Camp Rhein-Ruhr - Sitepackage Example

EXT:t3crr_sitepackage - A example TYPO3 Sitepackage Extension This extension was used in the T3CRR Talk "Sitepackage Einführung" in 2021! Notice Bewar

Dragan Balatinac 1 Nov 7, 2021
This example shows how to estimate pi, using generated random numbers that uniformly distributed.

php-estimatepi This example shows how to estimate pi, using generated random numbers that uniformly distributed. Every pair of numbers produced will b

Oğuzhan Cerit 1 Nov 26, 2021
Phalcon Mooc an example API + Front End with automated tests

NovaMooc - a Phalcon project A Mooc project developed with Phalcon, a PHP framework. Key Features • How To Use • Contributing • Credits • License Key

Les Enovateurs 19 Dec 4, 2022
This example shows how to use Anychart library with the PHP programming language, Laravel framework and MySQL database.

PHP basic template This example shows how to use Anychart library with the PHP programming language, Laravel framework and MySQL database. Running To

AnyChart Integrations and Templates 23 Jul 17, 2022
Laravel & Solana Phantom wallet example built with Bootstrap, JQuery. App connects to Phantom wallet and fetching publicKey and balance information.

Phantom Wallet Authentication Example Laravel & Solana ($SOL) Phantom wallet example built with Bootstrap, JQuery. This is a Web 3.0 app that connects

Solanacraft 3 Oct 19, 2022
This repository aims to build a fairly complete CI/CD example using GitHub workflows and actions.

CI/CD example This repository aims to build a fairly complete CI/CD example using GitHub workflows and actions. Keep in mind that the toolset used in

Robin Ingelbrecht 4 Nov 1, 2022
A list of documentation and example code to access the University of Florida's public (undocumented) API

uf_api A list of documentation and example code to access the University of Florida's public (undocumented) API Courses Gym Common Data (admissions an

Rob Olsthoorn 49 Oct 6, 2022
This is an example app demonstrating how to deploy a php app to runway.

Runway Example php App This is an example app demonstrating how to deploy a php app to runway. clone this repo, and navigate into that directory runwa

Planetary Quantum GmbH 0 Aug 9, 2022
HTMX example app that demonstrates how to use HTMX to add javascript interactivity to a serverside rendered PHP app

HTMX examle app This demo app demonstrates how to use HTMX to transform a server side rendered PHP app into a more 'interactive' app with AJAX request

Alexander Morland 3 Dec 11, 2022
My intention with this app is that new developers can have a concrete application with Laravel + VueJS where they can use it as example to learn the right way

My intention with this app is that new developers can have a concrete application with Laravel + VueJS where they can use it as example to learn the right way, implementing the best practices possible and at the same time learn how TDD is done. So this will be an example application but completely usable for any similar case.

Eng Hasan Hajjar 2 Sep 30, 2022
Simple library that abstracts different metrics collectors. I find this necessary to have a consistent and simple metrics (functional) API that doesn't cause vendor lock-in.

Metrics Simple library that abstracts different metrics collectors. I find this necessary to have a consistent and simple metrics API that doesn't cau

Benjamin Eberlei 311 Nov 20, 2022
Configure Magento 2 to send email using Google App, Gmail, Amazon Simple Email Service (SES), Microsoft Office365 and many other SMTP (Simple Mail Transfer Protocol) servers

Magento 2 SMTP Extension - Gmail, G Suite, Amazon SES, Office 365, Mailgun, SendGrid, Mandrill and other SMTP servers. For Magento 2.0.x, 2.1.x, 2.2.x

MagePal :: Magento Extensions 303 Oct 7, 2022