Skip to content
View mikestratton's full-sized avatar

Highlights

  • Pro

Organizations

@sunnytreesoftware
Block or Report

Block or report mikestratton

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. aicms aicms Public

    Artificially Intelligent Content Management System - Built Using OpenAI's API and Laravel

    PHP 2

  2. laravel laravel Public

    An introductory tutorial to PHP Laravel, the Artisan's choice for web application development.

    PHP 1

  3. simplemap simplemap Public archive

    GIS Browser Side Application using Google Maps JavaScript API. Functionality synopsis: 1) Draw on map with GIS geometry(point, linestring & polygon); 2) import/export GeoJSON; 3) upload image overl…

    PHP 5 8

  4. calculators calculators Public archive

    This repository is being maintained at sunnytreesoftware/cactus

    HTML 2 2

  5. GIS Function within Laravel Controller GIS Function within Laravel Controller
    1
    public function geoCoding($zip_code){
    2
            
    3
        $api = 'https://maps.googleapis.com/maps/api/geocode/json?address=';
    4
        $par = '&key=';
    5
        $goo = env('GOOGLE_KEY');
  6. Laravel Controller Laravel Controller
    1
     public function store(DefinitionsCreateRequest $request)
    2
        {
    3
            $input = $request->all();
    4
    
                  
    5
            $input['surveyor_id'] = Auth::id();