iyzipay-laravel
iyzipay-laravel copied to clipboard
iyzipay api integration for Laravel
Kurmaya çalıştım, adımları tek tek yaptım fakat vendor'a publish etmeye çalışırken bu hatayı aldım. (I try install, I did every step but giving this error on try publish to vendor.
FIX iyzico#35 - Cannot locate .stub files for migration
Having issues with string helper functions Example: Call to undefined function Iyzico\IyzipayLaravel\StorableClasses\camel_case()
With Laravel 5.5, Laravel has an ability to discover packages automatically. So, I added "laravel" key inside "extra" field with proper providers and aliases.
After developments done on the backend side, - Boolean field **_trusted_** should be added under _**Buyer**_ object inside payment auth requests. - **_bankCardHolderName_** should be added to payment auth's responses...
I need to charge the user on single product purchase. I have made this code: ```php $products = Product::where('id', 1)->get(); $subscription = Subscription::where('billable_id', $user->id)->first(); $user->pay($products, 'TRY', 1, $subscription); ``` But...
I publish database files and try migrate but I can't. Giving error every time in database tables.
It enables card storage as default. It should be optional. I wrote a fix for that.
after installing iyzipay-laravel and do all steps the last step doesn't work The Return was "Nothing to migrate. "
I have two plans: `monthly-plan` and `yearly-plan`. But of which have a trial period of 30 days. I need to let the user switch plan. **First question:** Is this the...