Skip to content

Instantly share code, notes, and snippets.

View acxgray's full-sized avatar

acxgray

  • Makati. Philippines
View GitHub Profile
@acxgray
acxgray / dashboard.blade.php
Created May 18, 2022 02:01
dashboard.blade.php - laravel views
@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>
@acxgray
acxgray / CalendarController.php
Last active February 26, 2022 11:44
Full Calendar (Html + jQuery) Frontend
<?php
namespace App\Http\Controllers\Admin;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use App\Models\Calendar;
class CalendarController extends Controller
{
@acxgray
acxgray / gitcommands.md
Last active October 25, 2021 04:42
Git Commands

Make a new branch

git branch <name>

Show branches (* is the active/current branch)

git branch