Skip to content

Instantly share code, notes, and snippets.

View nuhptr's full-sized avatar
:octocat:
Coding

Adi Nugraha Putra nuhptr

:octocat:
Coding
View GitHub Profile
@nuhptr
nuhptr / App.blade.php
Last active July 26, 2023 18:39
Using laravel datatables and flowbite also jquery and etc
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>{{ config('app.name', 'Laravel') }}</title>
@nuhptr
nuhptr / ResponseFormatter.php
Created February 13, 2023 12:28 — forked from galpratama/ResponseFormatter.php
API Response Formatter
<?php
namespace App\Http\Controllers\API;
class ResponseFormatter
{
protected static $response = [
'meta' => [
'code' => 200,
'status' => 'success',