This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Livewire; | |
use Livewire\Component; | |
use Illuminate\Support\Facades\Http; | |
class OpenaiChat extends Component | |
{ | |
public string $prompt = ''; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// routes/web.php | |
use Illuminate\Support\Facades\Route; | |
Route::get('/fun-message', function () { | |
$messages = [ | |
'سلام، امروز یه روز عالیه برای کد زدن! 🚀', | |
'لاراول دوست داشتنیه، ولی حواست باشه به کامپوزر آپدیت بده! 😆', | |
'اگر این پیام رو میبینی یعنی سرورت هنوز زندهست! 🖥️🔥', | |
'یک برنامهنویس خوب همیشه یه فنجون قهوه کنارشه ☕', |