Posts

Laravel Tinker Nedir ve Kullanımı

Laravel Tinker Nedir ve Kullanımı Tarih:  19 Haziran 2021  | Yazar:  wedat Laravel Tinker uygulamanızdaki işlemleri  terminal  üzerinden yapmanızı sağlar. Örnek kullanımlarına; Veritabanı işlemleri, job ve event tetikleme vb. işlemler verilebilir. Bu gibi işlemleri terminalden yapmak için öncelikle tinker konsoluna giriş yapalım; 1 php artisan tinker Tinker ile yapılan örnek işlemler; -Factory sınıfınızı çalıştırabilirsiniz. 1 Company::factory()-> count (50)->create(); // 50 tane örnek içerik üretir. -Veri tabanı sorgusu yapabilirsiniz. 1 2 3 4 5 // see the count of all users App\User:: count ();   // find a specific user and see their attributes App\User::where( 'username' , 'dillon' )->first(); -Obje oluşturarak veritabanına yeni içerik ekleyebilirsiniz; 1 2 3 4 $user = new App\User; $user ->name = "Clark" ; $user ->email = "superman@marvel.com" ; $user ->save(); Tinker konsolundan çıkış yapmak için ise  exit  komutunu çalıştırm

Laravel Logout get

Image
 

Laravel 8 Zoom

Image
 Kaynak: https://artisansweb.net/how-to-create-zoom-meetings-with-php-and-jwt/ https://stackoverflow.com/questions/62619661/how-can-i-use-php-packages-in-laravel $JWT=new \Firebase\JWT\JWT; In the past, I have written an article that explains  creating a Zoom Meeting with PHP and OAuth . One of our readers asked about creating a Zoom meeting using JWT(JSON Web Tokens) and PHP.  Zoom  API allows us to use both OAuth or JWT to deal with their APIs. The Zoom API requires the Bearer Token generated either through OAuth or JWT. Note : JWT may only be used for internal applications and processes. All apps created for third-party usage must use OAuth app type. When you want to build a Zoom app for internal use then the JWT approach is easier compared to OAuth. Getting Started For getting started, go to the Zoom Developer Dashboard and create a  new app . Choose  JWT  as the app type and copy the Zoom API key and secret. A single JWT consists of three components: Header, Payload, and Signature