观看视频 2 分钟
受到全球数千家公司的信任
Laravel 开箱即用,为所有现代 Web 应用程序所需的常用功能提供了优雅的解决方案。我们的第一方软件包为特定问题提供主观的解决方案,因此您无需重新发明轮子。
简洁、优雅的语法驱动惊人的功能。每个功能都经过深思熟虑,旨在创造周到且有凝聚力的开发体验。
1向您的 Laravel 路由添加身份验证中间件
1Route::get('/profile', ProfileController::class)2 ->middleware('auth');
2您可以通过 Auth facade 访问已验证的用户
1use Illuminate\Support\Facades\Auth;2 3$user = Auth::user();
1为您的模型定义策略
1public function update(User $user, Post $post): Response2{3 return $user->id === $post->user_id4 ? Response::allow()5 : Response::deny('You do not own this post.');6}
2通过 Gate facade 使用策略
1Gate::authorize('update', $post);
1为您的数据库表定义模型
1<?php 2 3namespace App\Models; 4 5use Illuminate\Database\Eloquent\Model; 6 7class Flight extends Model 8{ 9 // ...10}
2使用 Eloquent 从数据库检索记录
1use App\Models\Flight;2 3foreach (Flight::all() as $flight) {4 echo $flight->name;5}
1为您的数据库表创建迁移
1php artisan make:migration create_posts_table --create=posts
2在您的迁移文件中定义架构
1class CreatePostsTable extends Migration 2{ 3 public function up() 4 { 5 Schema::create('posts', function (Blueprint $table) { 6 $table->id(); 7 $table->string('title'); 8 $table->text('content'); 9 $table->foreignId('user_id')->constrained()->onDelete('cascade');10 $table->timestamps();11 });12 }13}
1在您的控制器中定义验证规则
1public function store(Request $request)2{3 $validated = $request->validate([4 'title' => 'required|max:255',5 'content' => 'required',6 'email' => 'required|email',7 ]);8}
2在您的视图中处理验证错误
1@if ($errors->any())2 <div class="alert alert-danger">3 <ul>4 @foreach ($errors->all() as $error)5 <li>{{ $error }}</li>6 @endforeach7 </ul>8 </div>9@endif
1定义通知内容
1class PostCreated extends Notification 2{ 3 public function via() 4 { 5 return ['mail', 'database']; // Send via mail and store in database 6 } 7 8 public function toMail($notifiable) 9 {10 return (new MailMessage)11 ->subject('New Post Created')12 ->line('A new post has been created: ' . $this->post->title)13 ->action('View Post', url('/posts/' . $this->post->id))14 ->line('Thank you for using our application!');15 }16}
2向用户发送通知
1public function store(Request $request)2{3 $post = Post::create($request->all());4 5 $request->user()->notify(new PostCreated($post));6}
1配置您的文件系统
1FILESYSTEM_DRIVER=s3
2在您的控制器中处理文件上传
1public function store(Request $request)2{3 if ($request->hasFile('image')) {4 $path = $request->file('image')->store('images', 'public');5 }6}
1定义作业逻辑
1class ProcessPost implements ShouldQueue2{3 public function handle()4 {5 $this->post->update([6 'rendered_content' => Str::markdown($this->post->content)7 ]);8 }9}
2从您的控制器调度作业
1public function store(Request $request)2{3 $post = Post::create($request->all());4 5 ProcessPost::dispatch($post);6}
1定义命令逻辑
1class SendEmails extends Command 2{ 3 protected $signature = 'emails:send'; 4 5 protected $description = 'Send scheduled emails'; 6 7 public function handle() 8 { 9 // Send your emails...10 }11}
2调度任务
1Schedule::command('emails:send')->daily();
1使用 Pest 编写您的测试
1it('can create a post', function () { 2 $response = $this->post('/posts', [ 3 'title' => 'Test Post', 4 'content' => 'This is a test post content.', 5 ]); 6 7 $response->assertStatus(302); 8 9 $this->assertDatabaseHas('posts', [10 'title' => 'Test Post',11 ]);12});
2在命令行上运行测试
1php artisan test
1创建您的事件
1class PostCreated implements ShouldBroadcast 2{ 3 use Dispatchable, SerializesModels; 4 5 public $post; 6 7 public function __construct(Post $post) 8 { 9 $this->post = $post;10 }11}
2在您的控制器中调度事件
1public function store(Request $request)2{3 $post = Post::create($request->all());4 5 PostCreated::dispatch($post);6}
3在您的 JavaScript 文件中,监听事件
1Echo.channel("posts." + postId).listen("PostCreated", (e) => {2 console.log("Post created:", e.post);3});
无论您喜欢传统的 PHP 后端、使用 Laravel Livewire 的现代前端,还是对 React 和 Vue 百用不厌,Laravel 都使您能够在极短的时间内交付高度完善且可维护的应用程序。
1class UserController 2{ 3 public function index() 4 { 5 $users = User::active() 6 ->orderByName() 7 ->get(['id', 'name', 'email']); 8 9 return Inertia::render('Users', [10 'users' => $users,11 ]);12 }13}
1export default ({ users }) => { 2 return ( 3 <div> 4 <h1>Users</h1> 5 <ul> 6 {users.map((user) => ( 7 <li key={user.id}>{user.name}</li> 8 ))} 9 </ul>10 </div>11 );12};
Laravel Inertia 为您的 Laravel 体验增添动力,并与 React、Vue 和 Svelte 无缝协作。Inertia 处理后端和前端之间的路由和数据传输,无需构建 API 或维护两组路由。
1class Counter extends Component 2{ 3 public $count = 1; 4 5 public function increment() 6 { 7 $this->count++; 8 } 9 10 public function decrement()11 {12 $this->count--;13 }14 15 public function render()16 {17 return view('livewire.counter');18 }19}
1<div>2 <h1>{{ $count }}</h1>3 4 <button wire:click="increment">+</button>5 6 <button wire:click="decrement">-</button>7</div>
Laravel Livewire 通过将动态、响应式界面直接引入您的 Blade 模板,从而改变您的 Laravel 应用程序。Livewire 无缝地弥合了服务器端渲染和客户端交互之间的差距,使您能够在 Laravel 的舒适环境中创建现代、交互式组件。
1Route::get('/api/user', function (Request $request) {2 return $request->user();3})->middleware('auth:sanctum');
Laravel 使开发人员能够轻松高效地为单页应用程序 (SPA) 和移动应用程序构建强大的后端。凭借对 RESTful API、身份验证和数据库管理的内置支持,Laravel 简化了将后端连接到 Vue.js 或 React 等现代前端框架的过程。
Laravel Cloud 为 Laravel 应用程序提供完全托管的应用程序平台,而 Forge 允许您自行管理运行 Laravel 应用程序的 VPS 服务器。
每个 Laravel 应用程序都可以通过监控、可观测性和测试工具实现企业级质量,这些工具使您能够自信地交付产品。
加入全球成千上万的开发人员和公司的行列。
“我使用 Laravel 已经将近十年了,从未想过要换用其他任何东西。”
“Laravel 是我们用于大大小小的 Web 项目的酵母和多功能工具。 10 年过去了,它仍然新鲜且有用。”
“Laravel 消除了构建现代、可扩展 Web 应用程序的痛苦。”
“Laravel 成长为一个了不起且活跃的社区。Laravel 不仅仅是一个 PHP 框架。”
“Laravel 是 PHP 生态系统中的一股清流,周围有一个出色的社区。”
“框架、生态系统和社区 - 这是一个完美的组合。”
“使用 Laravel 交付应用程序意味着在性能、灵活性和简洁性之间取得平衡,同时确保出色的开发人员体验。”
“AI 开发进展迅速。借助 Laravel,交付 AI 驱动的应用程序从未如此简单。”
“借助 Laravel,我们可以在几个月内为客户构建可扩展、高性能的 Web 应用程序和 API,否则这将需要数年时间。”
“Laravel 一流的测试工具让我安心快速交付强大的应用程序。”
“Laravel 使创建每天处理数亿个请求和数十亿后台任务的服务变得非常简单。”
“Laravel 帮助我比任何其他解决方案更快地推出产品,使我能够随着社区的发展更快地进入市场。”
“Laravel 就像我职业和事业的火箭燃料。”
“在过去的十年中,我一直将 Laravel 用于每个项目,直到今天,仍然没有其他框架可以与之媲美。”
“我已经使用 Laravel 超过 10 年了,我无法想象没有它如何使用 PHP。”
“Laravel 适合那些因为能够编写代码而编写代码,而不是因为不得不编写代码的开发人员。”
“Laravel 生态系统是我们业务成功的不可或缺的一部分。该框架使我们能够快速行动并定期交付产品。”
“多年来,我一直很欣赏 Laravel 专注于将 DX 推向新的高度。 它设计精良,文档非常出色。”
“Laravel 简直是一种乐趣。 它让我在创纪录的速度和喜悦中构建任何我想要的 Web 相关的东西。”
“直到我尝试了(许多)不同的生态系统,我才充分体会到 Laravel 的一站式解决方案。 Laravel 是独一无二的!”