Lanka Developers Community

    Lanka Developers

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Shop
    1. Home
    2. Tags
    3. laravel
    Log in to post
    • All categories
    • dev_lak

      Use Eloquent ORM in PHP projects without Laravel
      Web Development • php eloquent laravel orm • • dev_lak

      4
      2
      Votes
      4
      Posts
      1119
      Views

      Nubelle

      thanks bro

    • Nisal Vimukthi

      Mage laravel website eka MongoDb cluster ekka connect kranna giyama me error eka enava. meka fix karanne kohomada ?
      Laravel Framework • laravel mongodb database • • Nisal Vimukthi

      2
      1
      Votes
      2
      Posts
      663
      Views

      dev_lak

      bro oyage env eke DB_CONNECTION=mongodb_conn' kyna eke anthimata ' ekak wadila, ekai aula

    • Nisal Vimukthi

      Laravel Web site ekak Node.js Api ekak ekka connect kranne kohomada ?
      Laravel Framework • api laravel mongodb • • Nisal Vimukthi

      8
      1
      Votes
      8
      Posts
      1488
      Views

      dev_lak

      @Nisal-Vimukthi puluwan

    • Nisal Vimukthi

      MongoDB vs MySql
      Back-End Development • mysql mongodb nodejs laravel • • Nisal Vimukthi

      14
      0
      Votes
      14
      Posts
      2467
      Views

      Nubelle

      @Sahan-Siriwardana thanks bro

    • Salitha Chathuranga

      Create a Shopping Cart with Laravel 6 - Part 2
      Web Development • web development laravel php shopping-cart e-commerce • • Salitha Chathuranga

      3
      1
      Votes
      3
      Posts
      725
      Views

      Salitha Chathuranga

      @dev_lak ela bro!

    • Salitha Chathuranga

      Create a Shopping Cart with Laravel 6 - Part 1
      Web Development • web development laravel php shopping-cart e-commerce • • Salitha Chathuranga

      8
      2
      Votes
      8
      Posts
      1478
      Views

      Salitha Chathuranga

      @rachitha thanks bro

    • Salitha Chathuranga

      Deploy a Laravel application on Heroku with MySQL database
      Web Development • web development laravel php heroku mysql • • Salitha Chathuranga

      5
      1
      Votes
      5
      Posts
      1155
      Views

      Salitha Chathuranga

      @dev_lak @root @isuru2014 you're welcome bros!

    • KrissSachintha

      how to solve this error in laravel
      Web Development • laravel web development drivers • • KrissSachintha

      24
      1
      Votes
      24
      Posts
      5984
      Views

      dev_lak

      Uncomment
      extension=pdo_mysql

    • A

      Laravel payhere integration
      Back-End Development • laravel php payment gateway security html • • alwismt

      48
      1
      Votes
      48
      Posts
      14399
      Views

      M

      mata therenne na ai oya me form vairables server side eken redirect karanne kiyala methana credit card wisthara monawath na . nikam amount ekak witharai thiyenne payhere egollonge server (SITE) ekedi thama credit card info type karanna kiyanne. oyata me form auto submit karanna puluwan oyage route ekak athule view eke hadala javascript walin

      <form id="myForm" action="Page_C.php" method="post">
      <?php
      foreach ($_POST as $a => $b) {
      echo '<input type="hidden" name="'.htmlentities($a).'" value="'.htmlentities($b).'">';
      }
      ?>
      </form>
      <script type="text/javascript">
      document.getElementById('myForm').submit();
      </script>

      @root
      me kiyanne checkout karaddi (<form method="post" action="https://sandbox.payhere.lk/pay/checkout"> form eka submit karaddi)
      eke form entities wenama pahala thawa route ekakin java script walin submit karala e form data wenama database update karaganna kiyala neda.

    • manoj kasun

      Firebase and Laravel
      Web Development • firebase laravel flutter web development database • • manoj kasun

      10
      0
      Votes
      10
      Posts
      1972
      Views

      root

      @manoj-kasun

      yes . you can use mysql for API.

      use onesignal for push notification

      https://medium.com/berkay-kaya/onesignal-web-push-notifications-for-laravel-8de35851a6a4

    • Harsha Sampath

      HNB payment gateway
      Back-End Development • payment gateway php laravel • • Harsha Sampath

      9
      0
      Votes
      9
      Posts
      2248
      Views

      root

      @Harsha-Sampath

      me waqradi doc ekak euwe oya. mage yaluwek gen ahuwa mama. oyage account eka verify karama oyata ewanawa API doc ekak.

    • hashan

      Laravel Multiple Authentication using guards, not working!
      Back-End Development • laravel php backend • • hashan

      9
      0
      Votes
      9
      Posts
      2106
      Views

      Nubelle

      @Anjana_Gihan thanks bro i did not use laravel gurd

    • J

      Sampath bank eke payment gateway udauwwak
      Web Development • laravel payment gateway php • • jtta6

      20
      0
      Votes
      20
      Posts
      5287
      Views

      M

      Payhere api url ekata POST request ekak yawanna tiyenne. HTML form ekak hadala eka submit karanna thiyenne. Form eke action ekata danna ona Payhere API URL eka. Oyage domain eka payhere eke whitelist karanna ona kalin. ethakota oyage domain eke idan POST request yawanna puluwan. ekata aniwayen ona fields tiyenawa. (email, name, address, amount wage ewa). me tiyenne man karapu widiya.

      .env file

      PAYHERE_MERCHENT_ID=24333554141 PAYHERE_SECRET=8xxxxxxxxxxxxxxxxxxxxxxxxxJ7J PAYHERE_API_URL=https://sandbox.payhere.lk/pay/checkout

      config/payhere.php

      return [ 'api_url' => env('PAYHERE_API_URL', 'https://sandbox.payhere.lk/pay/checkout'), 'merchant_id' => env('PAYHERE_MERCHENT_ID', 'no_merchent'), 'secret' => env('PAYHERE_SECRET', 'no_secrete'), 'return_url' => env('PAYHERE_RETURN_URL', config('app.url') . '/checkout/return'), 'notify_url' => env('PAYHERE_NOTIFY_URL', config('app.url') . '/checkout/notify'), 'cancel_url' => env('PAYHERE_CANCEL_URL', config('app.url') . '/checkout/cancel'), ];

      Submit Order details (amount, items, name, etc)

      <form class="width:100%" method="post" action="{{ config('payhere.api_url')}}"> @csrf <input type="hidden" name="merchant_id" value="{{ config('payhere.merchant_id') }}"> <input type="hidden" name="return_url" value="{{ config('payhere.return_url') }}"> <input type="hidden" name="cancel_url" value="{{ config('payhere.cancel_url') }}"> <input type="hidden" name="notify_url" value="{{ config('payhere.notify_url') }}"> <input type="hidden" name="order_id" value="{{ $order->reference }}"> <input type="hidden" name="items" value="My Packages"> <input type="hidden" name="currency" value="{{ $order->currency }}"> <input type="hidden" name="amount" value="{{ $order->amount }}"> <input type="hidden" name="first_name" value="{{ $order->first_name }}"> <input type="hidden" name="last_name" value="{{ $order->last_name }}"> <input type="hidden" name="email" value="{{ $order->email }}"> <input type="hidden" name="phone" value="{{ $order->phone }}"> <input type="hidden" name="address" value="{{ $order->address }}"> <input type="hidden" name="city" value="{{ $order->city }}"> <input type="hidden" name="country" value="{{ $order->country }}"> <input type="hidden" name="hash" value="{{ $order->hash }}"> <input type="submit" class="" value="Pay Now"> </form>
    • hashan

      Laravel Data Save Error SQLSTATE[HY000]: General error: 1364
      Back-End Development • laravel php backend • • hashan

      3
      1
      Votes
      3
      Posts
      945
      Views

      dev_lak

      oyage code eke RegisterUser kyna model eke new object ekk hdnwa witarai, ekata values add krnne nha oya ekai error ekk enne, mehema try krnna

      registeruser::create($request->all());
    • oditha

      Laravel URL Rewrite !HELP!
      General Discussion • laravel apache rewrite url htaccess • • oditha

      10
      1
      Votes
      10
      Posts
      2237
      Views

      Nubelle

      @Oditha-Wanasinghe ela ela mchan

    • hashan

      laravel request all not working
      Back-End Development • laravel php backend • • hashan

      8
      0
      Votes
      8
      Posts
      1840
      Views

      Nubelle

      @hashan ok bro good luck

    • oditha

      Learn frameworks
      General Discussion • react ionic laravel angular vue • • oditha

      4
      2
      Votes
      4
      Posts
      1277
      Views

      Nubelle

      Patta thanks

    • BuddhikaNelum

      Need HELP - Laravel and Vue deploy
      General Discussion • laravel vue php deployment • • BuddhikaNelum

      2
      0
      Votes
      2
      Posts
      906
      Views

      root

      Oyage laravel project eka wenama host karala. Vue SPA eka wenama host karanna,

      https://medium.com/@Web_Bailey/deploy-a-vuejs-app-with-digitalocean-fd6e7af07e40

      Mekata digital ocean eken VPS server ekak thibbama athi, Digital ocean ma one na , Linode, Vultr walinuth VPS ganna puluwan

    • K

      Websites Load optimization
      Web Development • laravel vue website html • • kalana93

      4
      0
      Votes
      4
      Posts
      1255
      Views

      root

      try this

      https://www.npmjs.com/package/vue-infinite-loading

    • kushanshanuka

      Laravel passport එක්ක role/permission භාවිතා කරන්නේ කොකොමද
      Web Development • laravel passport php • • kushanshanuka

      4
      1
      Votes
      4
      Posts
      1731
      Views

      root

      @Harsha-Sampath

      Yes. easy package ekak , onama widiyakata permission denna puluwan meken

    • 1
    • 2
    • 3
    • 4
    • 3 / 4