Skip to content

Instantly share code, notes, and snippets.

View mustafaabduljalil's full-sized avatar
😜
laravel

Mustafa abdujalil mustafaabduljalil

😜
laravel
  • Softxpert
  • Alexandria
View GitHub Profile
@abdumu
abdumu / laravel-voyager-admin-rtl.css
Last active September 19, 2021 12:45
A custom css file to convert Laravel voyager admin panel to RTL
@import url(//fonts.googleapis.com/earlyaccess/notokufiarabic.css);
body{
direction: rtl;
font-family: 'Noto Kufi Arabic', sans-serif;
text-align:right;
}
h1, h2, h3, h4, h5, h6{
font-family: 'Noto Kufi Arabic', sans-serif;
@simonhamp
simonhamp / AppServiceProvider.php
Last active May 16, 2024 09:04
A pageable Collection implementation for Laravel
<?php
namespace App\Providers;
use Illuminate\Support\Collection;
use Illuminate\Pagination\LengthAwarePaginator;
class AppServiceProvider extends ServiceProvider
{
public function boot()