git branch <name>
git branch
| @extends('student.layouts.student') | |
| {{-- Page Title --}} | |
| @section('title', 'Student') | |
| {{-- Main Content --}} | |
| @section('content') | |
| <!-- Page Heading --> | |
| <div class="d-sm-flex align-items-center justify-content-between mb-4"> | |
| <h1 style="color: rgb(48, 48, 48);" class="h2 mb-0 "><b>Welcome, {{ auth()->user()->name }}!</b></h1> |
| <?php | |
| namespace App\Http\Controllers\Admin; | |
| use App\Http\Controllers\Controller; | |
| use Illuminate\Http\Request; | |
| use App\Models\Calendar; | |
| class CalendarController extends Controller | |
| { |