├── public ├── favicon.ico ├── robots.txt ├── img │ ├── me.png │ ├── 404.png │ ├── favicon.png │ └── profile.png ├── mix-manifest.json ├── .htaccess ├── js │ ├── script.js │ └── admin │ │ └── script.js └── index.php ├── database ├── .gitignore ├── migrations │ ├── 2023_03_02_091926_add_login_info_to_users.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2023_02_14_053521_create_categories_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2023_02_14_053234_create_projects_table.php │ └── 2014_10_12_000000_create_users_table.php ├── factories │ └── UserFactory.php └── seeders │ └── DatabaseSeeder.php ├── bootstrap ├── cache │ └── .gitignore └── app.php ├── resources ├── js │ ├── app.js │ ├── script.js │ └── bootstrap.js ├── lang │ └── en │ │ ├── pagination.php │ │ ├── auth.php │ │ ├── passwords.php │ │ └── validation.php ├── views │ ├── vendor │ │ └── pagination │ │ │ ├── simple-default.blade.php │ │ │ ├── simple-bootstrap-4.blade.php │ │ │ ├── simple-tailwind.blade.php │ │ │ ├── semantic-ui.blade.php │ │ │ ├── bootstrap-4.blade.php │ │ │ └── tailwind.blade.php │ ├── layouts │ │ ├── project.blade.php │ │ ├── main.blade.php │ │ ├── admin │ │ │ └── main.blade.php │ │ ├── nav.blade.php │ │ └── foot.blade.php │ ├── errors │ │ └── 404.blade.php │ ├── project.blade.php │ ├── projects.blade.php │ ├── author.blade.php │ └── dashboard │ │ └── category │ │ └── create.blade.php └── css │ └── app.css ├── storage ├── logs │ └── .gitignore ├── app │ ├── public │ │ └── .gitignore │ └── .gitignore ├── framework │ ├── testing │ │ └── .gitignore │ ├── views │ │ └── .gitignore │ ├── cache │ │ ├── data │ │ │ └── .gitignore │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── .gitignore └── clockwork │ └── .gitignore ├── screenshot ├── About.png ├── Login.png ├── Skills.png ├── Dashboard.png ├── Education.png ├── Projects.png ├── Services.png ├── AccountPanel.png ├── ProjectPanel.png └── CategoryPanel.png ├── postcss.config.js ├── .gitattributes ├── tests ├── TestCase.php ├── Unit │ └── ExampleTest.php ├── Feature │ └── ExampleTest.php └── CreatesApplication.php ├── .styleci.yml ├── .gitignore ├── .editorconfig ├── app ├── Http │ ├── Middleware │ │ ├── EncryptCookies.php │ │ ├── VerifyCsrfToken.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── TrustHosts.php │ │ ├── TrimStrings.php │ │ ├── Authenticate.php │ │ ├── TrustProxies.php │ │ └── RedirectIfAuthenticated.php │ ├── Controllers │ │ ├── Controller.php │ │ ├── HomePageController.php │ │ ├── ChangePasswordController.php │ │ ├── DashboardController.php │ │ ├── ProjectsController.php │ │ ├── LoginController.php │ │ ├── DashboardAccountController.php │ │ ├── DashboardCategoryController.php │ │ └── DashboardProjectController.php │ └── Kernel.php ├── Providers │ ├── BroadcastServiceProvider.php │ ├── AuthServiceProvider.php │ ├── AppServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Rules │ └── CurrentPassword.php ├── Models │ ├── Categories.php │ ├── User.php │ ├── Projects_.php │ └── Projects.php ├── Console │ └── Kernel.php ├── Listeners │ └── RecordLoginInfo.php └── Exceptions │ └── Handler.php ├── tailwind.config.js ├── routes ├── channels.php ├── api.php ├── console.php └── web.php ├── webpack.mix.js ├── server.php ├── package.json ├── config ├── cors.php ├── services.php ├── view.php ├── hashing.php ├── broadcasting.php ├── sanctum.php ├── filesystems.php ├── queue.php ├── cache.php ├── logging.php ├── mail.php ├── auth.php ├── database.php ├── sluggable.php └── session.php ├── .env.example ├── phpunit.xml ├── artisan ├── composer.json └── README.md /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/clockwork/.gitignore: -------------------------------------------------------------------------------- 1 | *.json 2 | *.json.gz 3 | index 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /public/img/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanbakhtiar/larawind-portfolio/HEAD/public/img/me.png -------------------------------------------------------------------------------- /public/img/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanbakhtiar/larawind-portfolio/HEAD/public/img/404.png -------------------------------------------------------------------------------- /screenshot/About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanbakhtiar/larawind-portfolio/HEAD/screenshot/About.png -------------------------------------------------------------------------------- /screenshot/Login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanbakhtiar/larawind-portfolio/HEAD/screenshot/Login.png -------------------------------------------------------------------------------- /public/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanbakhtiar/larawind-portfolio/HEAD/public/img/favicon.png -------------------------------------------------------------------------------- /public/img/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanbakhtiar/larawind-portfolio/HEAD/public/img/profile.png -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/js/app.js": "/js/app.js", 3 | "/css/app.css": "/css/app.css" 4 | } 5 | -------------------------------------------------------------------------------- /screenshot/Skills.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanbakhtiar/larawind-portfolio/HEAD/screenshot/Skills.png -------------------------------------------------------------------------------- /screenshot/Dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanbakhtiar/larawind-portfolio/HEAD/screenshot/Dashboard.png -------------------------------------------------------------------------------- /screenshot/Education.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanbakhtiar/larawind-portfolio/HEAD/screenshot/Education.png -------------------------------------------------------------------------------- /screenshot/Projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanbakhtiar/larawind-portfolio/HEAD/screenshot/Projects.png -------------------------------------------------------------------------------- /screenshot/Services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanbakhtiar/larawind-portfolio/HEAD/screenshot/Services.png -------------------------------------------------------------------------------- /screenshot/AccountPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanbakhtiar/larawind-portfolio/HEAD/screenshot/AccountPanel.png -------------------------------------------------------------------------------- /screenshot/ProjectPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanbakhtiar/larawind-portfolio/HEAD/screenshot/ProjectPanel.png -------------------------------------------------------------------------------- /screenshot/CategoryPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanbakhtiar/larawind-portfolio/HEAD/screenshot/CategoryPanel.png -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | cssnano: {}, 6 | }, 7 | } 8 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | compiled.php 2 | config.php 3 | down 4 | events.scanned.php 5 | maintenance.php 6 | routes.php 7 | routes.scanned.php 8 | schedule-* 9 | services.json 10 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.blade.php diff=html 4 | *.css diff=css 5 | *.html diff=html 6 | *.md diff=markdown 7 | *.php diff=php 8 | 9 | /.github export-ignore 10 | CHANGELOG.md export-ignore 11 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | // 16 | ]; 17 | } 18 | -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | // 16 | ]; 17 | } 18 | -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | get('/'); 18 | 19 | $response->assertStatus(200); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | // 16 | ]; 17 | } 18 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | public function hosts() 15 | { 16 | return [ 17 | $this->allSubdomainsOfApplicationUrl(), 18 | ]; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | 'current_password', 16 | 'password', 17 | 'password_confirmation', 18 | ]; 19 | } 20 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- 1 | make(Kernel::class)->bootstrap(); 19 | 20 | return $app; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- 1 | expectsJson()) { 18 | return route('login'); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Http/Controllers/HomePageController.php: -------------------------------------------------------------------------------- 1 | Projects::latest()->get(), 20 | 'user' => User::first() 21 | ]); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: [ 4 | "./resources/**/*.blade.php", 5 | "./resources/**/*.js", 6 | "./resources/**/*.vue", 7 | ], 8 | theme: { 9 | container: { 10 | center: true, 11 | padding: '16px', 12 | }, 13 | extend: { 14 | colors: { 15 | primary: '#0284c7', 16 | dark: '#111827', 17 | secondary: '#6b7280', 18 | }, 19 | screens: { 20 | '2xl': '1320px', 21 | } 22 | }, 23 | }, 24 | plugins: [ 25 | require('@tailwindcss/line-clamp'), 26 | ], 27 | } 28 | -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- 1 | '« Previous', 17 | 'next' => 'Next »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- 1 | id === (int) $id; 18 | }); 19 | -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- 1 | const mix = require('laravel-mix'); 2 | 3 | /* 4 | |-------------------------------------------------------------------------- 5 | | Mix Asset Management 6 | |-------------------------------------------------------------------------- 7 | | 8 | | Mix provides a clean, fluent API for defining some Webpack build steps 9 | | for your Laravel applications. By default, we are compiling the CSS 10 | | file for the application as well as bundling up all the JS files. 11 | | 12 | */ 13 | 14 | mix.js('resources/js/app.js', 'public/js') 15 | .postCss('resources/css/app.css', 'public/css', [ 16 | require("tailwindcss"), 17 | ]); -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- 1 | get('/user', function (Request $request) { 18 | return $request->user(); 19 | }); 20 | -------------------------------------------------------------------------------- /resources/js/script.js: -------------------------------------------------------------------------------- 1 | // Navbar fixed 2 | window.onscroll = function () { 3 | const header = document.querySelector('header'); 4 | const fixedNav = header.offsetTop; 5 | 6 | if (window.pageYOffset > fixedNav) { 7 | header.classList.add('navbar-fixed'); 8 | } else { 9 | header.classList.remove('navbar-fixed'); 10 | } 11 | }; 12 | 13 | // Hamburger 14 | const hamburger = document.querySelector('#hamburger'); 15 | const navMenu = document.querySelector('#nav-menu'); 16 | 17 | hamburger.addEventListener('click', function () { 18 | hamburger.classList.toggle('hamburger-active'); 19 | navMenu.classList.toggle('hidden'); 20 | }); -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | 10 | $uri = urldecode( 11 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) ?? '' 12 | ); 13 | 14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the 15 | // built-in PHP web server. This provides a convenient way to test a Laravel 16 | // application without having installed a "real" web server software here. 17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { 18 | return false; 19 | } 20 | 21 | require_once __DIR__.'/public/index.php'; 22 | -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 19 | })->purpose('Display an inspiring quote'); 20 | -------------------------------------------------------------------------------- /app/Rules/CurrentPassword.php: -------------------------------------------------------------------------------- 1 | user()->password); 16 | } 17 | 18 | /** 19 | * Get the validation error message. 20 | * 21 | * @return string 22 | */ 23 | public function message() 24 | { 25 | return 'Current password doesn\'t match'; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | 3 | Options -MultiViews -Indexes 4 | 5 | 6 | RewriteEngine On 7 | 8 | # Handle Authorization Header 9 | RewriteCond %{HTTP:Authorization} . 10 | RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 11 | 12 | # Redirect Trailing Slashes If Not A Folder... 13 | RewriteCond %{REQUEST_FILENAME} !-d 14 | RewriteCond %{REQUEST_URI} (.+)/$ 15 | RewriteRule ^ %1 [L,R=301] 16 | 17 | # Send Requests To Front Controller... 18 | RewriteCond %{REQUEST_FILENAME} !-d 19 | RewriteCond %{REQUEST_FILENAME} !-f 20 | RewriteRule ^ index.php [L] 21 | 22 | -------------------------------------------------------------------------------- /app/Models/Categories.php: -------------------------------------------------------------------------------- 1 | hasMany(Projects::class); 16 | } 17 | 18 | public function getRouteKeyName() 19 | { 20 | return 'slug'; 21 | } 22 | public function sluggable(): array 23 | { 24 | return [ 25 | 'slug' => [ 26 | 'source' => ['name'] 27 | ] 28 | ]; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- 1 | 14 | */ 15 | protected $policies = [ 16 | // 'App\Models\Model' => 'App\Policies\ModelPolicy', 17 | ]; 18 | 19 | /** 20 | * Register any authentication / authorization services. 21 | * 22 | * @return void 23 | */ 24 | public function boot() 25 | { 26 | $this->registerPolicies(); 27 | 28 | // 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- 1 | 'These credentials do not match our records.', 17 | 'password' => 'The provided password is incorrect.', 18 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 19 | 20 | ]; 21 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- 1 | |string|null 14 | */ 15 | protected $proxies; 16 | 17 | /** 18 | * The headers that should be used to detect proxies. 19 | * 20 | * @var int 21 | */ 22 | protected $headers = 23 | Request::HEADER_X_FORWARDED_FOR | 24 | Request::HEADER_X_FORWARDED_HOST | 25 | Request::HEADER_X_FORWARDED_PORT | 26 | Request::HEADER_X_FORWARDED_PROTO | 27 | Request::HEADER_X_FORWARDED_AWS_ELB; 28 | } 29 | -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- 1 | 'id']); 30 | Carbon::setLocale('en'); 31 | date_default_timezone_set('Asia/Jakarta'); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- 1 | command('inspire')->hourly(); 19 | } 20 | 21 | /** 22 | * Register the commands for the application. 23 | * 24 | * @return void 25 | */ 26 | protected function commands() 27 | { 28 | $this->load(__DIR__.'/Commands'); 29 | 30 | require base_path('routes/console.php'); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /app/Listeners/RecordLoginInfo.php: -------------------------------------------------------------------------------- 1 | user->forceFill([ 31 | 'last_login_at' => Carbon::now()->toDateTimeString(), 32 | 'last_login_ip' => request()->getClientIp() 33 | ])->save(); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- 1 | 'Your password has been reset!', 17 | 'sent' => 'We have emailed your password reset link!', 18 | 'throttled' => 'Please wait before retrying.', 19 | 'token' => 'This password reset token is invalid.', 20 | 'user' => "We can't find a user with that email address.", 21 | 22 | ]; 23 | -------------------------------------------------------------------------------- /database/migrations/2023_03_02_091926_add_login_info_to_users.php: -------------------------------------------------------------------------------- 1 | datetime('last_login_at')->nullable(); 18 | $table->string('last_login_ip')->nullable(); 19 | }); 20 | } 21 | 22 | /** 23 | * Reverse the migrations. 24 | * 25 | * @return void 26 | */ 27 | public function down() 28 | { 29 | Schema::table('users', function (Blueprint $table) { 30 | // 31 | }); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- 1 | string('email')->index(); 18 | $table->string('token'); 19 | $table->timestamp('created_at')->nullable(); 20 | }); 21 | } 22 | 23 | /** 24 | * Reverse the migrations. 25 | * 26 | * @return void 27 | */ 28 | public function down() 29 | { 30 | Schema::dropIfExists('password_resets'); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "scripts": { 4 | "dev": "npm run development", 5 | "development": "mix", 6 | "watch": "mix watch", 7 | "watch-poll": "mix watch -- --watch-options-poll=1000", 8 | "hot": "mix watch --hot", 9 | "prod": "npm run production", 10 | "production": "mix --production", 11 | "build:css": "postcss tailwind.css -o output.css" 12 | }, 13 | "devDependencies": { 14 | "autoprefixer": "^10.4.14", 15 | "axios": "^0.21", 16 | "cssnano": "^6.0.1", 17 | "laravel-mix": "^6.0.6", 18 | "lodash": "^4.17.19", 19 | "postcss": "^8.4.21", 20 | "postcss-cli": "^10.1.0", 21 | "tailwindcss": "^3.2.6" 22 | }, 23 | "dependencies": { 24 | "@tailwindcss/line-clamp": "^0.4.2", 25 | "chart.js": "^4.3.0" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-default.blade.php: -------------------------------------------------------------------------------- 1 | @if ($paginator->hasPages()) 2 | 19 | @endif 20 | -------------------------------------------------------------------------------- /resources/views/layouts/project.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | {{ $title }} | Muhammad Irfan Bakhtiar 9 | 10 | {{-- ICON --}} 11 | 12 | 13 | {{-- TAILWIND CSS --}} 14 | 15 | 16 | {{-- Font Poppins --}} 17 | 18 | 19 | 20 | 21 | 22 | @yield('container') 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /database/migrations/2023_02_14_053521_create_categories_table.php: -------------------------------------------------------------------------------- 1 | id(); 18 | $table->foreignId('user_id'); 19 | $table->string('name', 25)->unique(); 20 | $table->string('slug')->unique(); 21 | $table->timestamps(); 22 | }); 23 | } 24 | 25 | /** 26 | * Reverse the migrations. 27 | * 28 | * @return void 29 | */ 30 | public function down() 31 | { 32 | Schema::dropIfExists('categories'); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- 1 | ['api/*', 'sanctum/csrf-cookie'], 19 | 20 | 'allowed_methods' => ['*'], 21 | 22 | 'allowed_origins' => ['*'], 23 | 24 | 'allowed_origins_patterns' => [], 25 | 26 | 'allowed_headers' => ['*'], 27 | 28 | 'exposed_headers' => [], 29 | 30 | 'max_age' => 0, 31 | 32 | 'supports_credentials' => false, 33 | 34 | ]; 35 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- 1 | window._ = require('lodash'); 2 | 3 | /** 4 | * We'll load the axios HTTP library which allows us to easily issue requests 5 | * to our Laravel back-end. This library automatically handles sending the 6 | * CSRF token as a header based on the value of the "XSRF" token cookie. 7 | */ 8 | 9 | window.axios = require('axios'); 10 | 11 | window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; 12 | 13 | /** 14 | * Echo exposes an expressive API for subscribing to channels and listening 15 | * for events that are broadcast by Laravel. Echo and event broadcasting 16 | * allows your team to easily build robust real-time web applications. 17 | */ 18 | 19 | // import Echo from 'laravel-echo'; 20 | 21 | // window.Pusher = require('pusher-js'); 22 | 23 | // window.Echo = new Echo({ 24 | // broadcaster: 'pusher', 25 | // key: process.env.MIX_PUSHER_APP_KEY, 26 | // cluster: process.env.MIX_PUSHER_APP_CLUSTER, 27 | // forceTLS: true 28 | // }); 29 | -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- 1 | > 14 | */ 15 | protected $dontReport = [ 16 | // 17 | ]; 18 | 19 | /** 20 | * A list of the inputs that are never flashed for validation exceptions. 21 | * 22 | * @var array 23 | */ 24 | protected $dontFlash = [ 25 | 'current_password', 26 | 'password', 27 | 'password_confirmation', 28 | ]; 29 | 30 | /** 31 | * Register the exception handling callbacks for the application. 32 | * 33 | * @return void 34 | */ 35 | public function register() 36 | { 37 | $this->reportable(function (Throwable $e) { 38 | // 39 | }); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- 1 | id(); 18 | $table->string('uuid')->unique(); 19 | $table->text('connection'); 20 | $table->text('queue'); 21 | $table->longText('payload'); 22 | $table->longText('exception'); 23 | $table->timestamp('failed_at')->useCurrent(); 24 | }); 25 | } 26 | 27 | /** 28 | * Reverse the migrations. 29 | * 30 | * @return void 31 | */ 32 | public function down() 33 | { 34 | Schema::dropIfExists('failed_jobs'); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- 1 | > 18 | */ 19 | protected $listen = [ 20 | // Registered::class => [ 21 | // SendEmailVerificationNotification::class, 22 | Login::class => [ 23 | RecordLoginInfo::class 24 | ], 25 | ]; 26 | 27 | /** 28 | * Register any events for your application. 29 | * 30 | * @return void 31 | */ 32 | public function boot() 33 | { 34 | // 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- 1 | check()) { 26 | return redirect(RouteServiceProvider::DASHBOARD); 27 | } 28 | } 29 | 30 | return $next($request); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- 1 | [ 18 | 'domain' => env('MAILGUN_DOMAIN'), 19 | 'secret' => env('MAILGUN_SECRET'), 20 | 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), 21 | ], 22 | 23 | 'postmark' => [ 24 | 'token' => env('POSTMARK_TOKEN'), 25 | ], 26 | 27 | 'ses' => [ 28 | 'key' => env('AWS_ACCESS_KEY_ID'), 29 | 'secret' => env('AWS_SECRET_ACCESS_KEY'), 30 | 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /app/Http/Controllers/ChangePasswordController.php: -------------------------------------------------------------------------------- 1 | $user, 16 | 'title' => 'Change Password', 17 | ]); 18 | } 19 | 20 | public function store(Request $request) 21 | { 22 | $request->validate([ 23 | 'current_password' => ['required', new CurrentPassword], 24 | 'new_password' => ['required', 'min:8', 'regex:/[a-z]/', 'regex:/[A-Z]/', 'regex:/[0-9]/', 'regex:/[@$!%*#?&]/'], 25 | 'new_confirm_password' => ['same:new_password'], 26 | ]); 27 | 28 | User::find(auth()->user()->id)->update(['password' => Hash::make($request->new_password)]); 29 | 30 | return redirect('/dashboard/account')->with('success', 'Password change successfully!'); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | APP_NAME=Laravel 2 | APP_ENV=local 3 | APP_KEY= 4 | APP_DEBUG=true 5 | APP_URL=http://localhost 6 | 7 | LOG_CHANNEL=stack 8 | LOG_DEPRECATIONS_CHANNEL=null 9 | LOG_LEVEL=debug 10 | 11 | DB_CONNECTION=mysql 12 | DB_HOST=127.0.0.1 13 | DB_PORT=3306 14 | DB_DATABASE=laravel 15 | DB_USERNAME=root 16 | DB_PASSWORD= 17 | 18 | BROADCAST_DRIVER=log 19 | CACHE_DRIVER=file 20 | FILESYSTEM_DRIVER=local 21 | QUEUE_CONNECTION=sync 22 | SESSION_DRIVER=file 23 | SESSION_LIFETIME=120 24 | 25 | MEMCACHED_HOST=127.0.0.1 26 | 27 | REDIS_HOST=127.0.0.1 28 | REDIS_PASSWORD=null 29 | REDIS_PORT=6379 30 | 31 | MAIL_MAILER=smtp 32 | MAIL_HOST=mailhog 33 | MAIL_PORT=1025 34 | MAIL_USERNAME=null 35 | MAIL_PASSWORD=null 36 | MAIL_ENCRYPTION=null 37 | MAIL_FROM_ADDRESS=null 38 | MAIL_FROM_NAME="${APP_NAME}" 39 | 40 | AWS_ACCESS_KEY_ID= 41 | AWS_SECRET_ACCESS_KEY= 42 | AWS_DEFAULT_REGION=us-east-1 43 | AWS_BUCKET= 44 | AWS_USE_PATH_STYLE_ENDPOINT=false 45 | 46 | PUSHER_APP_ID= 47 | PUSHER_APP_KEY= 48 | PUSHER_APP_SECRET= 49 | PUSHER_APP_CLUSTER=mt1 50 | 51 | MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}" 52 | MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" 53 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- 1 | $this->faker->name(), 19 | 'email' => $this->faker->unique()->safeEmail(), 20 | 'email_verified_at' => now(), 21 | 'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password 22 | 'remember_token' => Str::random(10), 23 | ]; 24 | } 25 | 26 | /** 27 | * Indicate that the model's email address should be unverified. 28 | * 29 | * @return \Illuminate\Database\Eloquent\Factories\Factory 30 | */ 31 | public function unverified() 32 | { 33 | return $this->state(function (array $attributes) { 34 | return [ 35 | 'email_verified_at' => null, 36 | ]; 37 | }); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /database/migrations/2023_02_14_053234_create_projects_table.php: -------------------------------------------------------------------------------- 1 | id(); 18 | $table->foreignId('categories_id'); 19 | $table->foreignId('user_id'); 20 | $table->string('title', 100); 21 | $table->string('slug')->unique(); 22 | $table->string('image')->nullable(); 23 | $table->text('excerpt'); 24 | $table->text('body'); 25 | $table->timestamp('published_at')->nullable(); 26 | $table->timestamps(); 27 | }); 28 | } 29 | 30 | /** 31 | * Reverse the migrations. 32 | * 33 | * @return void 34 | */ 35 | public function down() 36 | { 37 | Schema::dropIfExists('projects'); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- 1 | 'datetime', 42 | ]; 43 | 44 | public function projects() 45 | { 46 | return $this->hasMany(Post::class); 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- 1 | [ 17 | resource_path('views'), 18 | ], 19 | 20 | /* 21 | |-------------------------------------------------------------------------- 22 | | Compiled View Path 23 | |-------------------------------------------------------------------------- 24 | | 25 | | This option determines where all the compiled Blade templates will be 26 | | stored for your application. Typically, this is within the storage 27 | | directory. However, as usual, you are free to change this value. 28 | | 29 | */ 30 | 31 | 'compiled' => env( 32 | 'VIEW_COMPILED_PATH', 33 | realpath(storage_path('framework/views')) 34 | ), 35 | 36 | ]; 37 | -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-bootstrap-4.blade.php: -------------------------------------------------------------------------------- 1 | @if ($paginator->hasPages()) 2 | 27 | @endif 28 | -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- 1 | id(); 18 | $table->string('username', 16)->unique(); 19 | $table->string('name'); 20 | $table->string('email')->unique(); 21 | $table->string('job', 50); 22 | $table->string('location', 50); 23 | $table->string('about', 1000); 24 | $table->string('image')->nullable(); 25 | $table->timestamp('email_verified_at')->nullable(); 26 | $table->string('password'); 27 | $table->rememberToken(); 28 | $table->timestamps(); 29 | }); 30 | } 31 | 32 | /** 33 | * Reverse the migrations. 34 | * 35 | * @return void 36 | */ 37 | public function down() 38 | { 39 | Schema::dropIfExists('users'); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /app/Models/Projects_.php: -------------------------------------------------------------------------------- 1 | "Judul Tulisan Pertama", 10 | "slug" => "judul-tulisan-pertama", 11 | "body" => "Lorem ipsum dolor sit amet consectetur adipisicing elit. Nulla et, adipisci est consectetur odio eligendi, architecto minus natus sit in odit temporibus laboriosam officia aliquam velit ad exercitationem, fuga omnis laudantium. Error fugiat molestiae inventore iusto atque quis quae consectetur voluptatibus sequi ullam quisquam facilis, doloremque quod laborum similique est?" 12 | ], 13 | [ 14 | "title" => "Judul Tulisan Kedua", 15 | "slug" => "judul-tulisan-kedua", 16 | "body" => "Lorem ipsum dolor, sit amet consectetur adipisicing elit. Temporibus dolorum nam sunt. A dolore, doloribus facere officiis beatae fuga eligendi qui dignissimos magni rem quasi dolorum delectus ea maiores expedita?" 17 | ] 18 | ]; 19 | 20 | public static function all() 21 | { 22 | return collect(self::$projects_posts); 23 | } 24 | 25 | public static function find($slug) 26 | { 27 | $projects = static::all(); 28 | return $projects->firstWhere('slug', $slug); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | ./tests/Unit 10 | 11 | 12 | ./tests/Feature 13 | 14 | 15 | 16 | 17 | ./app 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /resources/views/layouts/main.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Muhammad Irfan Bakhtiar 9 | 10 | {{-- ICON --}} 11 | 12 | 13 | {{-- TAILWIND CSS --}} 14 | 15 | 16 | {{-- AOS CSS --}} 17 | 18 | 19 | {{-- Font Poppins --}} 20 | 21 | 22 | 23 | 24 | 25 | 26 | @include('layouts.nav') 27 | @yield('container') 28 | 29 | {{-- BASIC SCRIPT --}} 30 | 31 | 32 | {{-- AOS --}} 33 | 34 | 37 | 38 | @include('layouts.foot') 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /app/Http/Controllers/DashboardController.php: -------------------------------------------------------------------------------- 1 | get()->groupBy(function ($data) { 21 | return Carbon::parse($data->created_at)->format('M'); 22 | }); 23 | 24 | $months = []; 25 | $monthCount = []; 26 | 27 | foreach ($data as $month => $values) { 28 | $months[] = $month; 29 | $monthCount[] = count($values); 30 | } 31 | 32 | return view('dashboard.index', compact('totalProjects', 'totalCategory', 'totalUser'), [ 33 | 'projects' => Projects::where('user_id', auth()->user()->id)->latest()->get(), 34 | 'data' => $data, 35 | 'months' => $months, 36 | 'monthCount' => $monthCount, 37 | 'title' => 'Dashboard', 38 | 39 | ]); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /app/Http/Controllers/ProjectsController.php: -------------------------------------------------------------------------------- 1 | name; 19 | } 20 | 21 | if (request('author')) { 22 | $author = User::firstWhere('username', request('author')); 23 | $title = ' by ' . $author->name; 24 | } 25 | 26 | return view('projects', [ 27 | "title" => "Projects", 28 | "projects" => Projects::latest()->filter(request(['search', 'categories', 'author']))->paginate(6)->withQueryString() 29 | ]); 30 | } 31 | 32 | public function show(Projects $projects) 33 | { 34 | return view('project', [ 35 | "title" => $projects->title, 36 | "project" => $projects 37 | ]); 38 | } 39 | 40 | public function author(User $author) 41 | { 42 | return view('author', [ 43 | "title" => 'Author', 44 | "author" => User::first(), 45 | 'project' => $author->project 46 | ]); 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | /* Firefox */ 3 | * { 4 | scrollbar-width: thin; 5 | scrollbar-color: var(--secondary) var(--primary); 6 | } 7 | 8 | /* Chrome, Edge, and Safari */ 9 | *::-webkit-scrollbar { 10 | width: 15px; 11 | } 12 | 13 | *::-webkit-scrollbar-track { 14 | background: var(--primary); 15 | border-radius: 5px; 16 | } 17 | 18 | *::-webkit-scrollbar-thumb { 19 | background-color: var(--secondary); 20 | border-radius: 14px; 21 | border: 3px solid var(--primary); 22 | } 23 | 24 | :root { 25 | --primary: #f9fafb; 26 | --secondary: #9ca3af; 27 | } 28 | 29 | @tailwind components; 30 | @tailwind utilities; 31 | 32 | body { 33 | font-family: "Poppins", sans-serif; 34 | /* font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 35 | Nunito, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", 36 | sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", 37 | "Noto Color Emoji"; */ 38 | } 39 | 40 | .navbar-fixed { 41 | @apply fixed z-[9999] bg-white; 42 | backdrop-filter: blur(5px); 43 | box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 44 | 0 4px 6px -4px rgb(0 0 0 / 0.1); 45 | } 46 | 47 | .link-btn-active { 48 | @apply bg-primary; 49 | @apply text-gray-50; 50 | } 51 | .link-btn-non { 52 | @apply text-gray-600; 53 | } 54 | 55 | .linex-active { 56 | @apply divide-x divide-sky-600; 57 | } 58 | 59 | .chart { 60 | max-height: 250px; 61 | } 62 | 63 | .nav-active { 64 | @apply text-primary; 65 | } 66 | -------------------------------------------------------------------------------- /app/Http/Controllers/LoginController.php: -------------------------------------------------------------------------------- 1 | 'Login', 15 | 'active' => 'login' 16 | ]); 17 | } 18 | 19 | public function authenticate(Request $request) 20 | { 21 | $credentials = $request->validate([ 22 | 'email' => 'required|email:dns', 23 | 'password' => 'required' 24 | ]); 25 | 26 | if (Auth::attempt($credentials)) { 27 | $request->session()->regenerate(); 28 | return redirect()->intended('/dashboard'); 29 | // return redirect()->intended('/dashboard')->with('success', 'Login successfull!'); 30 | } 31 | 32 | return back()->with('loginError', 'Login failed! Please check your email or password.'); 33 | } 34 | 35 | public function authenticated(Request $request, $user) 36 | { 37 | $user->forceFill([ 38 | 'last_login_at' => Carbon::now()->toDateTimeString(), 39 | 'last_login_ip' => $request->getClientIp() 40 | ])->save(); 41 | } 42 | 43 | public function logout() 44 | { 45 | Auth::logout(); 46 | 47 | request()->session()->invalidate(); 48 | 49 | request()->session()->regenerateToken(); 50 | 51 | return redirect('/login'); 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /public/js/script.js: -------------------------------------------------------------------------------- 1 | // Navbar fixed 2 | // window.onscroll = function () { 3 | // const header = document.querySelector('header'); 4 | // const fixedNav = header.offsetTop; 5 | 6 | // if (window.pageYOffset > fixedNav) { 7 | // header.classList.add('navbar-fixed'); 8 | // } else { 9 | // header.classList.remove('navbar-fixed'); 10 | // } 11 | // }; 12 | window.addEventListener('scroll', (e) => { 13 | const nav = document.querySelector('.header'); 14 | if (window.pageYOffset > 0) { 15 | nav.classList.add('navbar-fixed'); 16 | } else { 17 | nav.classList.remove('navbar-fixed'); 18 | } 19 | }); 20 | 21 | //Nav Active 22 | let section = document.querySelectorAll('section'); 23 | let navActive = document.querySelectorAll('.list'); 24 | 25 | window.onscroll = () => { 26 | section.forEach(sec => { 27 | let top = window.scrollY; 28 | let offset = sec.offsetTop; 29 | let id = sec.getAttribute('id'); 30 | 31 | if (top >= offset - 70) { 32 | navActive.forEach(active => { 33 | active.classList.remove('nav-active'); 34 | document.querySelector('.header [href*=' + id + ']').classList.add( 35 | 'nav-active'); 36 | }); 37 | }; 38 | }); 39 | }; 40 | 41 | // Hamburger 42 | const hamburger = document.querySelector('#hamburger'); 43 | const navMenu = document.querySelector('#nav-menu'); 44 | 45 | hamburger.addEventListener('click', function () { 46 | hamburger.classList.toggle('hamburger-active'); 47 | navMenu.classList.toggle('hidden'); 48 | }); 49 | -------------------------------------------------------------------------------- /resources/views/layouts/admin/main.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | {{ $title }} | Muhammad Irfan Bakhtiar 9 | 10 | {{-- ICON --}} 11 | 12 | 13 | {{-- TAILWIND CSS --}} 14 | 15 | 16 | {{-- Font Poppins --}} 17 | 18 | 19 | 20 | 21 | 22 | 23 | @if (Auth::check()) 24 | @include('layouts.sidenav') 25 | @endif 26 | @yield('container') 27 | 28 | {{-- BASIC SCRIPT --}} 29 | 30 | 31 | {{-- FLOWBITE JS --}} 32 | 33 | 34 | 35 | {{-- TAILWIND ELEMENTS --}} 36 | 37 | 38 | {{-- ALPINE JS --}} 39 | 40 | @stack('tinymce') 41 | @stack('chart') 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- 1 | 'bcrypt', 19 | 20 | /* 21 | |-------------------------------------------------------------------------- 22 | | Bcrypt Options 23 | |-------------------------------------------------------------------------- 24 | | 25 | | Here you may specify the configuration options that should be used when 26 | | passwords are hashed using the Bcrypt algorithm. This will allow you 27 | | to control the amount of time it takes to hash the given password. 28 | | 29 | */ 30 | 31 | 'bcrypt' => [ 32 | 'rounds' => env('BCRYPT_ROUNDS', 10), 33 | ], 34 | 35 | /* 36 | |-------------------------------------------------------------------------- 37 | | Argon Options 38 | |-------------------------------------------------------------------------- 39 | | 40 | | Here you may specify the configuration options that should be used when 41 | | passwords are hashed using the Argon algorithm. These will allow you 42 | | to control the amount of time it takes to hash the given password. 43 | | 44 | */ 45 | 46 | 'argon' => [ 47 | 'memory' => 65536, 48 | 'threads' => 1, 49 | 'time' => 4, 50 | ], 51 | 52 | ]; 53 | -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-tailwind.blade.php: -------------------------------------------------------------------------------- 1 | @if ($paginator->hasPages()) 2 | 25 | @endif 26 | -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- 1 | singleton( 30 | Illuminate\Contracts\Http\Kernel::class, 31 | App\Http\Kernel::class 32 | ); 33 | 34 | $app->singleton( 35 | Illuminate\Contracts\Console\Kernel::class, 36 | App\Console\Kernel::class 37 | ); 38 | 39 | $app->singleton( 40 | Illuminate\Contracts\Debug\ExceptionHandler::class, 41 | App\Exceptions\Handler::class 42 | ); 43 | 44 | /* 45 | |-------------------------------------------------------------------------- 46 | | Return The Application 47 | |-------------------------------------------------------------------------- 48 | | 49 | | This script returns the application instance. The instance is given to 50 | | the calling script so we can separate the building of the instances 51 | | from the actual running of the application and sending responses. 52 | | 53 | */ 54 | 55 | return $app; 56 | -------------------------------------------------------------------------------- /resources/views/vendor/pagination/semantic-ui.blade.php: -------------------------------------------------------------------------------- 1 | @if ($paginator->hasPages()) 2 | 36 | @endif 37 | -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | make(Illuminate\Contracts\Console\Kernel::class); 34 | 35 | $status = $kernel->handle( 36 | $input = new Symfony\Component\Console\Input\ArgvInput, 37 | new Symfony\Component\Console\Output\ConsoleOutput 38 | ); 39 | 40 | /* 41 | |-------------------------------------------------------------------------- 42 | | Shutdown The Application 43 | |-------------------------------------------------------------------------- 44 | | 45 | | Once Artisan has finished running, we will fire off the shutdown events 46 | | so that any final work may be done by the application before we shut 47 | | down the process. This is the last thing to happen to the request. 48 | | 49 | */ 50 | 51 | $kernel->terminate($input, $status); 52 | 53 | exit($status); 54 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- 1 | make(Kernel::class); 50 | 51 | $response = $kernel->handle( 52 | $request = Request::capture() 53 | )->send(); 54 | 55 | $kernel->terminate($request, $response); 56 | -------------------------------------------------------------------------------- /app/Models/Projects.php: -------------------------------------------------------------------------------- 1 | when($filters['search'] ?? false, function ($query, $search) { 20 | return $query->where(function ($query) use ($search) { 21 | $query->where('title', 'like', '%' . $search . '%') 22 | ->orWhere('body', 'like', '%' . $search . '%'); 23 | }); 24 | }); 25 | 26 | $query->when($filters['categories'] ?? false, function ($query, $categories) { 27 | return $query->whereHas('categories', function ($query) use ($categories) { 28 | $query->where('slug', $categories); 29 | }); 30 | }); 31 | 32 | $query->when($filters['author'] ?? false, function ($query, $author) { 33 | return $query->whereHas('author', function ($query) use ($author) { 34 | $query->where('username', $author); 35 | }); 36 | }); 37 | } 38 | 39 | public function categories() 40 | { 41 | return $this->belongsTo(Categories::class); 42 | } 43 | 44 | public function author() 45 | { 46 | return $this->belongsTo(User::class, 'user_id'); 47 | } 48 | 49 | public function getRouteKeyName() 50 | { 51 | return 'slug'; 52 | } 53 | public function sluggable(): array 54 | { 55 | return [ 56 | 'slug' => [ 57 | 'source' => ['title'] 58 | ] 59 | ]; 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- 1 | env('BROADCAST_DRIVER', 'null'), 19 | 20 | /* 21 | |-------------------------------------------------------------------------- 22 | | Broadcast Connections 23 | |-------------------------------------------------------------------------- 24 | | 25 | | Here you may define all of the broadcast connections that will be used 26 | | to broadcast events to other systems or over websockets. Samples of 27 | | each available type of connection are provided inside this array. 28 | | 29 | */ 30 | 31 | 'connections' => [ 32 | 33 | 'pusher' => [ 34 | 'driver' => 'pusher', 35 | 'key' => env('PUSHER_APP_KEY'), 36 | 'secret' => env('PUSHER_APP_SECRET'), 37 | 'app_id' => env('PUSHER_APP_ID'), 38 | 'options' => [ 39 | 'cluster' => env('PUSHER_APP_CLUSTER'), 40 | 'useTLS' => true, 41 | ], 42 | ], 43 | 44 | 'ably' => [ 45 | 'driver' => 'ably', 46 | 'key' => env('ABLY_KEY'), 47 | ], 48 | 49 | 'redis' => [ 50 | 'driver' => 'redis', 51 | 'connection' => 'default', 52 | ], 53 | 54 | 'log' => [ 55 | 'driver' => 'log', 56 | ], 57 | 58 | 'null' => [ 59 | 'driver' => 'null', 60 | ], 61 | 62 | ], 63 | 64 | ]; 65 | -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- 1 | configureRateLimiting(); 40 | 41 | $this->routes(function () { 42 | Route::prefix('api') 43 | ->middleware('api') 44 | ->namespace($this->namespace) 45 | ->group(base_path('routes/api.php')); 46 | 47 | Route::middleware('web') 48 | ->namespace($this->namespace) 49 | ->group(base_path('routes/web.php')); 50 | }); 51 | } 52 | 53 | /** 54 | * Configure the rate limiters for the application. 55 | * 56 | * @return void 57 | */ 58 | protected function configureRateLimiting() 59 | { 60 | RateLimiter::for('api', function (Request $request) { 61 | return Limit::perMinute(60)->by(optional($request->user())->id ?: $request->ip()); 62 | }); 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "laravel/laravel", 3 | "type": "project", 4 | "description": "The Laravel Framework.", 5 | "keywords": ["framework", "laravel"], 6 | "license": "MIT", 7 | "require": { 8 | "php": "^7.3|^8.0", 9 | "cviebrock/eloquent-sluggable": "8.0.*", 10 | "fruitcake/laravel-cors": "^2.0", 11 | "guzzlehttp/guzzle": "^7.0.1", 12 | "itsgoingd/clockwork": "^5.1", 13 | "laravel/framework": "^8.75", 14 | "laravel/sanctum": "^2.11", 15 | "laravel/tinker": "^2.5", 16 | "laravelcollective/html": "^6.4" 17 | }, 18 | "require-dev": { 19 | "facade/ignition": "^2.5", 20 | "fakerphp/faker": "^1.9.1", 21 | "laravel/sail": "^1.0.1", 22 | "mockery/mockery": "^1.4.4", 23 | "nunomaduro/collision": "^5.10", 24 | "phpunit/phpunit": "^9.5.10" 25 | }, 26 | "autoload": { 27 | "psr-4": { 28 | "App\\": "app/", 29 | "Database\\Factories\\": "database/factories/", 30 | "Database\\Seeders\\": "database/seeders/" 31 | } 32 | }, 33 | "autoload-dev": { 34 | "psr-4": { 35 | "Tests\\": "tests/" 36 | } 37 | }, 38 | "scripts": { 39 | "post-autoload-dump": [ 40 | "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", 41 | "@php artisan package:discover --ansi" 42 | ], 43 | "post-update-cmd": [ 44 | "@php artisan vendor:publish --tag=laravel-assets --ansi --force" 45 | ], 46 | "post-root-package-install": [ 47 | "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" 48 | ], 49 | "post-create-project-cmd": [ 50 | "@php artisan key:generate --ansi" 51 | ] 52 | }, 53 | "extra": { 54 | "laravel": { 55 | "dont-discover": [] 56 | } 57 | }, 58 | "config": { 59 | "optimize-autoloader": true, 60 | "preferred-install": "dist", 61 | "sort-packages": true 62 | }, 63 | "minimum-stability": "dev", 64 | "prefer-stable": true 65 | } 66 | -------------------------------------------------------------------------------- /resources/views/errors/404.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 404 Not Found 9 | {{-- ICON --}} 10 | 11 | 12 | {{-- TAILWIND CSS --}} 13 | 14 | 15 | {{-- Font Poppins --}} 16 | 17 | 18 | 19 | 20 | 21 |
23 |
24 |
25 | {{--
--}} 26 |
27 |

28 | It looks like you're lost on this site 29 |

30 |

Please visit our homepage to get where you need to go.

31 | Go 33 | back home 34 |
35 | {{--
--}} 36 | {{--
37 | 38 |
--}} 39 |
40 |
41 |
42 | 43 |
44 |
45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /resources/views/vendor/pagination/bootstrap-4.blade.php: -------------------------------------------------------------------------------- 1 | @if ($paginator->hasPages()) 2 | 46 | @endif 47 | -------------------------------------------------------------------------------- /public/js/admin/script.js: -------------------------------------------------------------------------------- 1 | // Hamburger Menu 2 | // const hamburger = document.querySelector('#hamburger'); 3 | // hamburger.addEventListener('click', function () { 4 | // hamburger.classList.toggle('hamburger-active'); 5 | // }); 6 | 7 | // Close Alert Notif 8 | function closeAlert(event) { 9 | let element = event.target; 10 | while (element.nodeName !== "BUTTON") { 11 | element = element.parentNode; 12 | } 13 | element.parentNode.parentNode.removeChild(element.parentNode); 14 | } 15 | 16 | //Preview Image 17 | function previewImage() { 18 | const image = document.querySelector('#image'); 19 | const imgPreview = document.querySelector('.img-preview'); 20 | 21 | imgPreview.style.display = 'block'; 22 | const oFReader = new FileReader(); 23 | oFReader.readAsDataURL(image.files[0]); 24 | oFReader.onload = function(oFREvent) { 25 | imgPreview.src = oFREvent.target.result; 26 | } 27 | } 28 | 29 | //Menu 30 | function dropDown() { 31 | document.querySelector('#submenu').classList.toggle('hidden') 32 | document.querySelector('#arrow').classList.toggle('rotate-0') 33 | } 34 | 35 | //Sidebar 36 | function Openbar() { 37 | document.querySelector('.sidebar').classList.toggle('left-[-300px]') 38 | // document.body.classList.add('stop-scrolling') 39 | // if( document.querySelector('.sidebar').classList.toggle('left-[-300px]')) { 40 | // document.body.classList.remove('stop-scrolling'); 41 | // } else { 42 | // document.body.classList.add('stop-scrolling'); 43 | // } 44 | } 45 | 46 | //Read more and hide 47 | function toggleText() { 48 | var dots = document.getElementById("dots"); 49 | var moreText = document.getElementById("more"); 50 | var button = document.getElementById("button"); 51 | 52 | if (dots.classList.contains("hidden")) { 53 | dots.classList.remove("hidden"); 54 | moreText.classList.add("hidden"); 55 | button.innerHTML = "Read more"; 56 | } else { 57 | dots.classList.add("hidden"); 58 | moreText.classList.remove("hidden"); 59 | button.innerHTML = "Hide"; 60 | } 61 | } 62 | 63 | // window.addEventListener('scroll', (e) => { 64 | // const nav = document.querySelector('.navbar'); 65 | // if (window.pageYOffset > 0) { 66 | // nav.classList.add("shadow-md"); 67 | // } else { 68 | // nav.classList.remove("shadow-md"); 69 | // } 70 | // }); -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- 1 | explode(',', env('SANCTUM_STATEFUL_DOMAINS', sprintf( 17 | '%s%s', 18 | 'localhost,localhost:3000,127.0.0.1,127.0.0.1:8000,::1', 19 | env('APP_URL') ? ','.parse_url(env('APP_URL'), PHP_URL_HOST) : '' 20 | ))), 21 | 22 | /* 23 | |-------------------------------------------------------------------------- 24 | | Sanctum Guards 25 | |-------------------------------------------------------------------------- 26 | | 27 | | This array contains the authentication guards that will be checked when 28 | | Sanctum is trying to authenticate a request. If none of these guards 29 | | are able to authenticate the request, Sanctum will use the bearer 30 | | token that's present on an incoming request for authentication. 31 | | 32 | */ 33 | 34 | 'guard' => ['web'], 35 | 36 | /* 37 | |-------------------------------------------------------------------------- 38 | | Expiration Minutes 39 | |-------------------------------------------------------------------------- 40 | | 41 | | This value controls the number of minutes until an issued token will be 42 | | considered expired. If this value is null, personal access tokens do 43 | | not expire. This won't tweak the lifetime of first-party sessions. 44 | | 45 | */ 46 | 47 | 'expiration' => null, 48 | 49 | /* 50 | |-------------------------------------------------------------------------- 51 | | Sanctum Middleware 52 | |-------------------------------------------------------------------------- 53 | | 54 | | When authenticating your first-party SPA with Sanctum you may need to 55 | | customize some of the middleware Sanctum uses while processing the 56 | | request. You may change the middleware listed below as required. 57 | | 58 | */ 59 | 60 | 'middleware' => [ 61 | 'verify_csrf_token' => App\Http\Middleware\VerifyCsrfToken::class, 62 | 'encrypt_cookies' => App\Http\Middleware\EncryptCookies::class, 63 | ], 64 | 65 | ]; 66 | -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- 1 | env('FILESYSTEM_DRIVER', 'local'), 17 | 18 | /* 19 | |-------------------------------------------------------------------------- 20 | | Filesystem Disks 21 | |-------------------------------------------------------------------------- 22 | | 23 | | Here you may configure as many filesystem "disks" as you wish, and you 24 | | may even configure multiple disks of the same driver. Defaults have 25 | | been setup for each driver as an example of the required options. 26 | | 27 | | Supported Drivers: "local", "ftp", "sftp", "s3" 28 | | 29 | */ 30 | 31 | 'disks' => [ 32 | 33 | 'local' => [ 34 | 'driver' => 'local', 35 | 'root' => storage_path('app'), 36 | ], 37 | 38 | 'public' => [ 39 | 'driver' => 'local', 40 | 'root' => storage_path('app/public'), 41 | 'url' => env('APP_URL').'/storage', 42 | 'visibility' => 'public', 43 | ], 44 | 45 | 's3' => [ 46 | 'driver' => 's3', 47 | 'key' => env('AWS_ACCESS_KEY_ID'), 48 | 'secret' => env('AWS_SECRET_ACCESS_KEY'), 49 | 'region' => env('AWS_DEFAULT_REGION'), 50 | 'bucket' => env('AWS_BUCKET'), 51 | 'url' => env('AWS_URL'), 52 | 'endpoint' => env('AWS_ENDPOINT'), 53 | 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), 54 | ], 55 | 56 | ], 57 | 58 | /* 59 | |-------------------------------------------------------------------------- 60 | | Symbolic Links 61 | |-------------------------------------------------------------------------- 62 | | 63 | | Here you may configure the symbolic links that will be created when the 64 | | `storage:link` Artisan command is executed. The array keys should be 65 | | the locations of the links and the values should be their targets. 66 | | 67 | */ 68 | 69 | 'links' => [ 70 | public_path('storage') => storage_path('app/public'), 71 | ], 72 | 73 | ]; 74 | -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- 1 | 15 | */ 16 | protected $middleware = [ 17 | // \App\Http\Middleware\TrustHosts::class, 18 | \App\Http\Middleware\TrustProxies::class, 19 | \Fruitcake\Cors\HandleCors::class, 20 | \App\Http\Middleware\PreventRequestsDuringMaintenance::class, 21 | \Illuminate\Foundation\Http\Middleware\ValidatePostSize::class, 22 | \App\Http\Middleware\TrimStrings::class, 23 | \Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class, 24 | ]; 25 | 26 | /** 27 | * The application's route middleware groups. 28 | * 29 | * @var array> 30 | */ 31 | protected $middlewareGroups = [ 32 | 'web' => [ 33 | \App\Http\Middleware\EncryptCookies::class, 34 | \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class, 35 | \Illuminate\Session\Middleware\StartSession::class, 36 | // \Illuminate\Session\Middleware\AuthenticateSession::class, 37 | \Illuminate\View\Middleware\ShareErrorsFromSession::class, 38 | \App\Http\Middleware\VerifyCsrfToken::class, 39 | \Illuminate\Routing\Middleware\SubstituteBindings::class, 40 | ], 41 | 42 | 'api' => [ 43 | // \Laravel\Sanctum\Http\Middleware\EnsureFrontendRequestsAreStateful::class, 44 | 'throttle:api', 45 | \Illuminate\Routing\Middleware\SubstituteBindings::class, 46 | ], 47 | ]; 48 | 49 | /** 50 | * The application's route middleware. 51 | * 52 | * These middleware may be assigned to groups or used individually. 53 | * 54 | * @var array 55 | */ 56 | protected $routeMiddleware = [ 57 | 'auth' => \App\Http\Middleware\Authenticate::class, 58 | 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class, 59 | 'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class, 60 | 'can' => \Illuminate\Auth\Middleware\Authorize::class, 61 | 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class, 62 | 'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class, 63 | 'signed' => \Illuminate\Routing\Middleware\ValidateSignature::class, 64 | 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class, 65 | 'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class, 66 | ]; 67 | } 68 | -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- 1 | env('QUEUE_CONNECTION', 'sync'), 17 | 18 | /* 19 | |-------------------------------------------------------------------------- 20 | | Queue Connections 21 | |-------------------------------------------------------------------------- 22 | | 23 | | Here you may configure the connection information for each server that 24 | | is used by your application. A default configuration has been added 25 | | for each back-end shipped with Laravel. You are free to add more. 26 | | 27 | | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null" 28 | | 29 | */ 30 | 31 | 'connections' => [ 32 | 33 | 'sync' => [ 34 | 'driver' => 'sync', 35 | ], 36 | 37 | 'database' => [ 38 | 'driver' => 'database', 39 | 'table' => 'jobs', 40 | 'queue' => 'default', 41 | 'retry_after' => 90, 42 | 'after_commit' => false, 43 | ], 44 | 45 | 'beanstalkd' => [ 46 | 'driver' => 'beanstalkd', 47 | 'host' => 'localhost', 48 | 'queue' => 'default', 49 | 'retry_after' => 90, 50 | 'block_for' => 0, 51 | 'after_commit' => false, 52 | ], 53 | 54 | 'sqs' => [ 55 | 'driver' => 'sqs', 56 | 'key' => env('AWS_ACCESS_KEY_ID'), 57 | 'secret' => env('AWS_SECRET_ACCESS_KEY'), 58 | 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), 59 | 'queue' => env('SQS_QUEUE', 'default'), 60 | 'suffix' => env('SQS_SUFFIX'), 61 | 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 62 | 'after_commit' => false, 63 | ], 64 | 65 | 'redis' => [ 66 | 'driver' => 'redis', 67 | 'connection' => 'default', 68 | 'queue' => env('REDIS_QUEUE', 'default'), 69 | 'retry_after' => 90, 70 | 'block_for' => null, 71 | 'after_commit' => false, 72 | ], 73 | 74 | ], 75 | 76 | /* 77 | |-------------------------------------------------------------------------- 78 | | Failed Queue Jobs 79 | |-------------------------------------------------------------------------- 80 | | 81 | | These options configure the behavior of failed queue job logging so you 82 | | can control which database and table are used to store the jobs that 83 | | have failed. You may change them to any database / table you wish. 84 | | 85 | */ 86 | 87 | 'failed' => [ 88 | 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'), 89 | 'database' => env('DB_CONNECTION', 'mysql'), 90 | 'table' => 'failed_jobs', 91 | ], 92 | 93 | ]; 94 | -------------------------------------------------------------------------------- /resources/views/project.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.project') 2 | @section('container') 3 |
4 |
5 |
6 |
7 |

{{ $project->title }} 8 |

9 | 21 | 24 | {{ $project->categories->name }} 25 | 26 |
27 | @if ($project->image) 28 |
29 | {{ $project->categories->name }} 31 |
32 | @else 33 | {{ $project->categories->name }} 36 | @endif 37 |
38 |
39 | {!! $project->body !!} 40 | 46 |
47 |
48 |
49 | @endsection 50 | -------------------------------------------------------------------------------- /app/Http/Controllers/DashboardAccountController.php: -------------------------------------------------------------------------------- 1 | 'Account', 23 | ]); 24 | } 25 | 26 | /** 27 | * Show the form for creating a new resource. 28 | * 29 | * @return \Illuminate\Http\Response 30 | */ 31 | public function create() 32 | { 33 | // 34 | } 35 | 36 | /** 37 | * Store a newly created resource in storage. 38 | * 39 | * @param \Illuminate\Http\Request $request 40 | * @return \Illuminate\Http\Response 41 | */ 42 | public function store(Request $request) 43 | { 44 | // 45 | } 46 | 47 | /** 48 | * Display the specified resource. 49 | * 50 | * @param \App\Models\User $user 51 | * @return \Illuminate\Http\Response 52 | */ 53 | public function show(User $user) 54 | { 55 | // 56 | } 57 | 58 | /** 59 | * Show the form for editing the specified resource. 60 | * 61 | * @param \App\Models\User $user 62 | * @return \Illuminate\Http\Response 63 | */ 64 | public function edit(User $user) 65 | { 66 | return view('dashboard.account.edit', [ 67 | 'user' => $user, 68 | 'title' => 'Edit Account' 69 | ]); 70 | } 71 | 72 | /** 73 | * Update the specified resource in storage. 74 | * 75 | * @param \Illuminate\Http\Request $request 76 | * @param \App\Models\User $user 77 | * @return \Illuminate\Http\Response 78 | */ 79 | public function update(Request $request, User $user) 80 | { 81 | $rules = [ 82 | 'image' => 'image|mimes:jpeg,png,jpg|max:1024|dimensions:max_width=100,max_height=100,min_width=50,min_height=50', 83 | 'name' => 'required', 84 | 'job' => 'required|max:50', 85 | 'location' => 'required|max:50', 86 | 'about' => 'required|max:1000', 87 | ]; 88 | 89 | if ($request->email != $user->email) { 90 | $rules['email'] = 'required|unique:users'; 91 | } 92 | 93 | $validatedData = $request->validate($rules); 94 | 95 | if ($request->file('image')) { 96 | if ($request->oldImage) { 97 | Storage::delete($request->oldImage); 98 | } 99 | $validatedData['image'] = $request->file('image')->store('profile'); 100 | } 101 | 102 | 103 | User::where('id', $user->id) 104 | ->update($validatedData); 105 | return redirect('/dashboard/account')->with('success', 'Account has been update!'); 106 | } 107 | 108 | /** 109 | * Remove the specified resource from storage. 110 | * 111 | * @param \App\Models\User $user 112 | * @return \Illuminate\Http\Response 113 | */ 114 | public function destroy(User $user) 115 | { 116 | if ($user->image) { 117 | Storage::delete($user->image); 118 | } 119 | } 120 | } 121 | -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- 1 | env('CACHE_DRIVER', 'file'), 19 | 20 | /* 21 | |-------------------------------------------------------------------------- 22 | | Cache Stores 23 | |-------------------------------------------------------------------------- 24 | | 25 | | Here you may define all of the cache "stores" for your application as 26 | | well as their drivers. You may even define multiple stores for the 27 | | same cache driver to group types of items stored in your caches. 28 | | 29 | | Supported drivers: "apc", "array", "database", "file", 30 | | "memcached", "redis", "dynamodb", "octane", "null" 31 | | 32 | */ 33 | 34 | 'stores' => [ 35 | 36 | 'apc' => [ 37 | 'driver' => 'apc', 38 | ], 39 | 40 | 'array' => [ 41 | 'driver' => 'array', 42 | 'serialize' => false, 43 | ], 44 | 45 | 'database' => [ 46 | 'driver' => 'database', 47 | 'table' => 'cache', 48 | 'connection' => null, 49 | 'lock_connection' => null, 50 | ], 51 | 52 | 'file' => [ 53 | 'driver' => 'file', 54 | 'path' => storage_path('framework/cache/data'), 55 | ], 56 | 57 | 'memcached' => [ 58 | 'driver' => 'memcached', 59 | 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'), 60 | 'sasl' => [ 61 | env('MEMCACHED_USERNAME'), 62 | env('MEMCACHED_PASSWORD'), 63 | ], 64 | 'options' => [ 65 | // Memcached::OPT_CONNECT_TIMEOUT => 2000, 66 | ], 67 | 'servers' => [ 68 | [ 69 | 'host' => env('MEMCACHED_HOST', '127.0.0.1'), 70 | 'port' => env('MEMCACHED_PORT', 11211), 71 | 'weight' => 100, 72 | ], 73 | ], 74 | ], 75 | 76 | 'redis' => [ 77 | 'driver' => 'redis', 78 | 'connection' => 'cache', 79 | 'lock_connection' => 'default', 80 | ], 81 | 82 | 'dynamodb' => [ 83 | 'driver' => 'dynamodb', 84 | 'key' => env('AWS_ACCESS_KEY_ID'), 85 | 'secret' => env('AWS_SECRET_ACCESS_KEY'), 86 | 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 87 | 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), 88 | 'endpoint' => env('DYNAMODB_ENDPOINT'), 89 | ], 90 | 91 | 'octane' => [ 92 | 'driver' => 'octane', 93 | ], 94 | 95 | ], 96 | 97 | /* 98 | |-------------------------------------------------------------------------- 99 | | Cache Key Prefix 100 | |-------------------------------------------------------------------------- 101 | | 102 | | When utilizing a RAM based store such as APC or Memcached, there might 103 | | be other applications utilizing the same cache. So, we'll specify a 104 | | value to get prefixed to all our keys so we can avoid collisions. 105 | | 106 | */ 107 | 108 | 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'), 109 | 110 | ]; 111 | -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- 1 | 'Category', 36 | 'active' => 'categories', 37 | 'categories' => Categories::all() 38 | ]); 39 | }); 40 | 41 | //LOGIN 42 | Route::get('/login', [LoginController::class, 'index'])->name('login')->middleware('guest'); 43 | Route::post('/login', [LoginController::class, 'authenticate']); 44 | 45 | //LOGOUT 46 | Route::post('/logout', [LoginController::class, 'logout']); 47 | 48 | //CHECK-SLUG 49 | Route::get('/dashboard/project/checkSlug', [DashboardProjectController::class, 'checkSlug'])->middleware('auth'); 50 | Route::get('/dashboard/category/checkSlug', [DashboardCategoryController::class, 'checkSlug'])->middleware('auth'); 51 | 52 | //ADMIN-DASHBOARD 53 | Route::get('/dashboard', [DashboardController::class, 'index'])->middleware('auth'); 54 | 55 | //ADMIN-PROJECT 56 | Route::resource('/dashboard/project/', DashboardProjectController::class)->except([ 57 | 'show', 'destroy', 'edit', 'update' 58 | ])->middleware('auth'); 59 | Route::delete('/dashboard/project/{project:slug}', [DashboardProjectController::class, 'destroy'])->middleware('auth'); 60 | Route::get('/dashboard/project/{project:slug}', [DashboardProjectController::class, 'show'])->middleware('auth'); 61 | Route::get('/dashboard/project/{project:slug}/edit', [DashboardProjectController::class, 'edit'])->middleware('auth'); 62 | Route::put('/dashboard/project/{project:slug}', [DashboardProjectController::class, 'update'])->middleware('auth'); 63 | 64 | //ADMIN-CATEGORY 65 | Route::resource('/dashboard/category', DashboardCategoryController::class)->except([ 66 | 'destroy', 'edit', 'update' 67 | ])->middleware('auth'); 68 | Route::delete('/dashboard/category/{categories:slug}', [DashboardCategoryController::class, 'destroy'])->middleware('auth'); 69 | Route::get('/dashboard/category/{categories:slug}/edit', [DashboardCategoryController::class, 'edit'])->middleware('auth'); 70 | Route::put('/dashboard/category/{categories:slug}', [DashboardCategoryController::class, 'update'])->middleware('auth'); 71 | 72 | //ADMIN-ACCOUNT 73 | Route::resource('/dashboard/account/', DashboardAccountController::class)->except([ 74 | 'edit', 'update' 75 | ])->middleware('auth'); 76 | Route::get('/dashboard/account/{user:id}/edit', [DashboardAccountController::class, 'edit'])->middleware('auth'); 77 | Route::put('/dashboard/account/{user:id}', [DashboardAccountController::class, 'update'])->middleware('auth'); 78 | 79 | //ADMIN-CHANGE-PASS 80 | Route::get('/dashboard/account/change-password', [ChangePasswordController::class, 'index'])->middleware('auth'); 81 | Route::post('/dashboard/account/change-password', [ChangePasswordController::class, 'store'])->middleware('auth'); 82 | -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- 1 | env('LOG_CHANNEL', 'stack'), 21 | 22 | /* 23 | |-------------------------------------------------------------------------- 24 | | Deprecations Log Channel 25 | |-------------------------------------------------------------------------- 26 | | 27 | | This option controls the log channel that should be used to log warnings 28 | | regarding deprecated PHP and library features. This allows you to get 29 | | your application ready for upcoming major versions of dependencies. 30 | | 31 | */ 32 | 33 | 'deprecations' => env('LOG_DEPRECATIONS_CHANNEL', 'null'), 34 | 35 | /* 36 | |-------------------------------------------------------------------------- 37 | | Log Channels 38 | |-------------------------------------------------------------------------- 39 | | 40 | | Here you may configure the log channels for your application. Out of 41 | | the box, Laravel uses the Monolog PHP logging library. This gives 42 | | you a variety of powerful log handlers / formatters to utilize. 43 | | 44 | | Available Drivers: "single", "daily", "slack", "syslog", 45 | | "errorlog", "monolog", 46 | | "custom", "stack" 47 | | 48 | */ 49 | 50 | 'channels' => [ 51 | 'stack' => [ 52 | 'driver' => 'stack', 53 | 'channels' => ['single'], 54 | 'ignore_exceptions' => false, 55 | ], 56 | 57 | 'single' => [ 58 | 'driver' => 'single', 59 | 'path' => storage_path('logs/laravel.log'), 60 | 'level' => env('LOG_LEVEL', 'debug'), 61 | ], 62 | 63 | 'daily' => [ 64 | 'driver' => 'daily', 65 | 'path' => storage_path('logs/laravel.log'), 66 | 'level' => env('LOG_LEVEL', 'debug'), 67 | 'days' => 14, 68 | ], 69 | 70 | 'slack' => [ 71 | 'driver' => 'slack', 72 | 'url' => env('LOG_SLACK_WEBHOOK_URL'), 73 | 'username' => 'Laravel Log', 74 | 'emoji' => ':boom:', 75 | 'level' => env('LOG_LEVEL', 'critical'), 76 | ], 77 | 78 | 'papertrail' => [ 79 | 'driver' => 'monolog', 80 | 'level' => env('LOG_LEVEL', 'debug'), 81 | 'handler' => SyslogUdpHandler::class, 82 | 'handler_with' => [ 83 | 'host' => env('PAPERTRAIL_URL'), 84 | 'port' => env('PAPERTRAIL_PORT'), 85 | ], 86 | ], 87 | 88 | 'stderr' => [ 89 | 'driver' => 'monolog', 90 | 'level' => env('LOG_LEVEL', 'debug'), 91 | 'handler' => StreamHandler::class, 92 | 'formatter' => env('LOG_STDERR_FORMATTER'), 93 | 'with' => [ 94 | 'stream' => 'php://stderr', 95 | ], 96 | ], 97 | 98 | 'syslog' => [ 99 | 'driver' => 'syslog', 100 | 'level' => env('LOG_LEVEL', 'debug'), 101 | ], 102 | 103 | 'errorlog' => [ 104 | 'driver' => 'errorlog', 105 | 'level' => env('LOG_LEVEL', 'debug'), 106 | ], 107 | 108 | 'null' => [ 109 | 'driver' => 'monolog', 110 | 'handler' => NullHandler::class, 111 | ], 112 | 113 | 'emergency' => [ 114 | 'path' => storage_path('logs/laravel.log'), 115 | ], 116 | ], 117 | 118 | ]; 119 | -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- 1 | env('MAIL_MAILER', 'smtp'), 17 | 18 | /* 19 | |-------------------------------------------------------------------------- 20 | | Mailer Configurations 21 | |-------------------------------------------------------------------------- 22 | | 23 | | Here you may configure all of the mailers used by your application plus 24 | | their respective settings. Several examples have been configured for 25 | | you and you are free to add your own as your application requires. 26 | | 27 | | Laravel supports a variety of mail "transport" drivers to be used while 28 | | sending an e-mail. You will specify which one you are using for your 29 | | mailers below. You are free to add additional mailers as required. 30 | | 31 | | Supported: "smtp", "sendmail", "mailgun", "ses", 32 | | "postmark", "log", "array", "failover" 33 | | 34 | */ 35 | 36 | 'mailers' => [ 37 | 'smtp' => [ 38 | 'transport' => 'smtp', 39 | 'host' => env('MAIL_HOST', 'smtp.mailgun.org'), 40 | 'port' => env('MAIL_PORT', 587), 41 | 'encryption' => env('MAIL_ENCRYPTION', 'tls'), 42 | 'username' => env('MAIL_USERNAME'), 43 | 'password' => env('MAIL_PASSWORD'), 44 | 'timeout' => null, 45 | 'auth_mode' => null, 46 | ], 47 | 48 | 'ses' => [ 49 | 'transport' => 'ses', 50 | ], 51 | 52 | 'mailgun' => [ 53 | 'transport' => 'mailgun', 54 | ], 55 | 56 | 'postmark' => [ 57 | 'transport' => 'postmark', 58 | ], 59 | 60 | 'sendmail' => [ 61 | 'transport' => 'sendmail', 62 | 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -t -i'), 63 | ], 64 | 65 | 'log' => [ 66 | 'transport' => 'log', 67 | 'channel' => env('MAIL_LOG_CHANNEL'), 68 | ], 69 | 70 | 'array' => [ 71 | 'transport' => 'array', 72 | ], 73 | 74 | 'failover' => [ 75 | 'transport' => 'failover', 76 | 'mailers' => [ 77 | 'smtp', 78 | 'log', 79 | ], 80 | ], 81 | ], 82 | 83 | /* 84 | |-------------------------------------------------------------------------- 85 | | Global "From" Address 86 | |-------------------------------------------------------------------------- 87 | | 88 | | You may wish for all e-mails sent by your application to be sent from 89 | | the same address. Here, you may specify a name and address that is 90 | | used globally for all e-mails that are sent by your application. 91 | | 92 | */ 93 | 94 | 'from' => [ 95 | 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), 96 | 'name' => env('MAIL_FROM_NAME', 'Example'), 97 | ], 98 | 99 | /* 100 | |-------------------------------------------------------------------------- 101 | | Markdown Mail Settings 102 | |-------------------------------------------------------------------------- 103 | | 104 | | If you are using Markdown based email rendering, you may configure your 105 | | theme and component paths here, allowing you to customize the design 106 | | of the emails. Or, you may simply stick with the Laravel defaults! 107 | | 108 | */ 109 | 110 | 'markdown' => [ 111 | 'theme' => 'default', 112 | 113 | 'paths' => [ 114 | resource_path('views/vendor/mail'), 115 | ], 116 | ], 117 | 118 | ]; 119 | -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- 1 | [ 17 | 'guard' => 'web', 18 | 'passwords' => 'users', 19 | ], 20 | 21 | /* 22 | |-------------------------------------------------------------------------- 23 | | Authentication Guards 24 | |-------------------------------------------------------------------------- 25 | | 26 | | Next, you may define every authentication guard for your application. 27 | | Of course, a great default configuration has been defined for you 28 | | here which uses session storage and the Eloquent user provider. 29 | | 30 | | All authentication drivers have a user provider. This defines how the 31 | | users are actually retrieved out of your database or other storage 32 | | mechanisms used by this application to persist your user's data. 33 | | 34 | | Supported: "session" 35 | | 36 | */ 37 | 38 | 'guards' => [ 39 | 'web' => [ 40 | 'driver' => 'session', 41 | 'provider' => 'users', 42 | ], 43 | ], 44 | 45 | /* 46 | |-------------------------------------------------------------------------- 47 | | User Providers 48 | |-------------------------------------------------------------------------- 49 | | 50 | | All authentication drivers have a user provider. This defines how the 51 | | users are actually retrieved out of your database or other storage 52 | | mechanisms used by this application to persist your user's data. 53 | | 54 | | If you have multiple user tables or models you may configure multiple 55 | | sources which represent each model / table. These sources may then 56 | | be assigned to any extra authentication guards you have defined. 57 | | 58 | | Supported: "database", "eloquent" 59 | | 60 | */ 61 | 62 | 'providers' => [ 63 | 'users' => [ 64 | 'driver' => 'eloquent', 65 | 'model' => App\Models\User::class, 66 | ], 67 | 68 | // 'users' => [ 69 | // 'driver' => 'database', 70 | // 'table' => 'users', 71 | // ], 72 | ], 73 | 74 | /* 75 | |-------------------------------------------------------------------------- 76 | | Resetting Passwords 77 | |-------------------------------------------------------------------------- 78 | | 79 | | You may specify multiple password reset configurations if you have more 80 | | than one user table or model in the application and you want to have 81 | | separate password reset settings based on the specific user types. 82 | | 83 | | The expire time is the number of minutes that each reset token will be 84 | | considered valid. This security feature keeps tokens short-lived so 85 | | they have less time to be guessed. You may change this as needed. 86 | | 87 | */ 88 | 89 | 'passwords' => [ 90 | 'users' => [ 91 | 'provider' => 'users', 92 | 'table' => 'password_resets', 93 | 'expire' => 60, 94 | 'throttle' => 60, 95 | ], 96 | ], 97 | 98 | /* 99 | |-------------------------------------------------------------------------- 100 | | Password Confirmation Timeout 101 | |-------------------------------------------------------------------------- 102 | | 103 | | Here you may define the amount of seconds before a password confirmation 104 | | times out and the user is prompted to re-enter their password via the 105 | | confirmation screen. By default, the timeout lasts for three hours. 106 | | 107 | */ 108 | 109 | 'password_timeout' => 10800, 110 | 111 | ]; 112 | -------------------------------------------------------------------------------- /app/Http/Controllers/DashboardCategoryController.php: -------------------------------------------------------------------------------- 1 | Categories::where('user_id', auth()->user()->id)->paginate(5), 23 | 'title' => 'Category', 24 | ]); 25 | } 26 | 27 | /** 28 | * Show the form for creating a new resource. 29 | * 30 | * @return \Illuminate\Http\Response 31 | */ 32 | public function create() 33 | { 34 | return view('dashboard.category.create', [ 35 | 'title' => 'Create Category', 36 | ]); 37 | } 38 | 39 | /** 40 | * Store a newly created resource in storage. 41 | * 42 | * @param \Illuminate\Http\Request $request 43 | * @return \Illuminate\Http\Response 44 | */ 45 | public function store(Request $request) 46 | { 47 | $validatedData = $request->validate([ 48 | 'name' => 'required|unique:categories|max:25', 49 | 'slug' => 'required|unique:categories', 50 | ]); 51 | 52 | $validatedData['user_id'] = auth()->user()->id; 53 | 54 | Categories::create($validatedData); 55 | return redirect('/dashboard/category')->with('success', 'New category has been added!'); 56 | } 57 | 58 | /** 59 | * Display the specified resource. 60 | * 61 | * @param \App\Models\Categories $categories 62 | * @return \Illuminate\Http\Response 63 | */ 64 | public function show(Categories $categories) 65 | { 66 | // 67 | } 68 | 69 | /** 70 | * Show the form for editing the specified resource. 71 | * 72 | * @param \App\Models\Categories $categories 73 | * @return \Illuminate\Http\Response 74 | */ 75 | public function edit(Categories $categories) 76 | { 77 | return view('dashboard.category.edit', [ 78 | 'categories' => $categories, 79 | 'title' => 'Edit Category', 80 | ]); 81 | } 82 | 83 | /** 84 | * Update the specified resource in storage. 85 | * 86 | * @param \Illuminate\Http\Request $request 87 | * @param \App\Models\Categories $categories 88 | * @return \Illuminate\Http\Response 89 | */ 90 | public function update(Request $request, Categories $categories) 91 | { 92 | $rules = []; 93 | 94 | if ($request->slug != $categories->slug) { 95 | $rules['slug'] = 'required|unique:categories'; 96 | } 97 | 98 | if ($request->name != $categories->name) { 99 | $rules['name'] = 'required|unique:categories|max:25'; 100 | } 101 | 102 | $validatedData = $request->validate($rules); 103 | $validatedData['user_id'] = auth()->user()->id; 104 | 105 | Categories::where('id', $categories->id) 106 | ->update($validatedData); 107 | return redirect('/dashboard/category')->with('success', 'Category has been update!'); 108 | } 109 | 110 | /** 111 | * Remove the specified resource from storage. 112 | * 113 | * @param \App\Models\Categories $categories 114 | * @return \Illuminate\Http\Response 115 | */ 116 | public function destroy(Categories $categories) 117 | { 118 | Categories::destroy($categories->id); 119 | return redirect('/dashboard/category')->with('success', 'Category has been deleted!'); 120 | } 121 | 122 | public function checkSlug(Request $request) 123 | { 124 | $slug = SlugService::createSlug(Categories::class, 'slug', $request->name); 125 | return response()->json(['slug' => $slug]); 126 | } 127 | } 128 | -------------------------------------------------------------------------------- /resources/views/projects.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.project') 2 | @section('container') 3 |
4 |
5 |
6 |

Projects

7 |

All completed projects.

8 |
9 |
10 |
11 |
12 |
13 |
14 | @if (!empty($projects) && $projects->count()) 15 | @foreach ($projects as $project) 16 |
17 |
18 | @if ($project->image) 19 |
20 | {{ $project->categories->name }} 23 |
24 | @else 25 | 27 | @endif 28 |
29 |

{{ $project->title }} 31 |

32 |

33 | {{ $project->excerpt }} 34 |

35 |
36 |
37 | 40 | {{ $project->categories->name }} 41 | 42 |
43 | 55 |
56 |
57 |
58 |
59 | @endforeach 60 | @else 61 |

No projects found

62 | @endif 63 |
64 |
65 | {{ $projects->links() }} 66 |
67 | 73 |
74 |
75 | @endsection 76 | -------------------------------------------------------------------------------- /resources/views/layouts/nav.blade.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 63 |
64 |
65 | 66 | -------------------------------------------------------------------------------- /resources/views/author.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.project') 2 | @section('container') 3 |
4 |
5 |
6 |

Author

7 |

About the project author.

8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 | 19 |
20 |
{{ $author->name }} 21 |
22 |
23 | 32 | {{ $author->job }} 33 |
34 |
35 | 41 | {{ $author->location }} 42 |
43 | Email address 44 | 46 | {{ $author->email }} 47 | 48 |
49 |
50 |
51 |
52 |
Information 53 |
54 |
About me 55 |
56 | {{ $author->about }} 57 |
58 |
59 |
60 | 66 |
67 |
68 | @endsection 69 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 |
12 |
13 | 14 | Logo 15 | 16 | 17 |

Larawind Portfolio

18 | 19 |

20 | Start writing your portfolio easily and fun. 21 |
22 | Report Bug 23 | 25 |

26 |
27 | 28 | 29 | 30 | ## About The Project 31 | 32 | This project started when I wanted to create a website that was used to represent the results of the project I created. Many out there have made it like this, but I am more challenged to develop this portfolio website using existing references. 33 | 34 | Why use this: 35 | 36 | - Make it easier for you to share the results of your projects with the world 37 | - Writing portfolios becomes more efficient anytime and anywhere 38 | - Responsive user interface 39 | 40 | Of course, this project wouldn't be perfect without references from great people out there. Thanks to everyone for supporting me to develop this project! 41 | 42 | ### Built With 43 | 44 | This project uses the following framework: 45 | 46 | - Laravel 47 | - Tailwind CSS 48 | 49 | This project uses the following tools & plugin: 50 | 51 | - Trix Editor 52 | - Eloquent Sluggable 53 | - Line Clamp 54 | 55 | 56 | 57 | ### Features 58 | The project has features such as: 59 | 60 | Homepage 61 | - About Section 62 | - Education Section 63 | - Skills Section 64 | - Projects Section 65 | - Services Section 66 | 67 | Admin Panel 68 | - Dashboard 69 | - Manage Project 70 | - Manage Category 71 | - Manage Account 72 | 73 | 74 | 75 | ### Screenshot 76 | ##### Home Page 77 |
78 | Show 79 | About 80 | Education 81 | Skilss 82 | Projects 83 | Services 84 |
85 | 86 | ##### Admin Panel 87 |
88 | Show 89 | Login 90 | Dashboard 91 | Project 92 | Category 93 | Account 94 |
95 | 96 | 97 | 98 | ## Getting Started 99 | 100 | This is a step about setting up your project locally. To get a local copy up and running, follow these simple example steps. 101 | 102 | ### Prerequisites 103 | 104 | To clone and run this application, you'll need [Git](https://git-scm.com) and [Node.js](https://nodejs.org/en/download/) (which comes with [npm](http://npmjs.com)) installed on your computer. 105 | 106 | ### Installation 107 | 108 | _Below are the procedures for installing and setting up your app._ 109 | 110 | 1. Clone the repo 111 | ```sh 112 | git clone https://github.com/irfanbakhtiar/larawind-portfolio.git 113 | ``` 114 | 2. Install Composer 115 | ```sh 116 | composer install 117 | ``` 118 | 3. Copy .env 119 | ```sh 120 | cp .env.example .env 121 | ``` 122 | 4. Open .env change your field correspond to your configuration. 123 | ```sh 124 | DB_DATABASE 125 | ``` 126 | ```sh 127 | DB_PASSWORD 128 | ``` 129 | 5. Key generate 130 | ```sh 131 | php artisan key:generate 132 | ``` 133 | 6. Migrate database 134 | ```sh 135 | php artisan migrate 136 | ``` 137 | 7. Run server 138 | ```sh 139 | php artisan serve 140 | ``` 141 | 8. Run your build process with new terminal 142 | ```sh 143 | npm run watch 144 | ``` 145 | 9. Don't forget to symlink your storage 146 | ```sh 147 | php artisan storage:link 148 | ``` 149 | 150 | 151 | ## Contact 152 | 153 | Muhammad Irfan Bakhtiar - m.irfanbakhtiar99@gmail.com
154 | Project Link: [https://github.com/irfanbakhtiar/larawind-portfolio](https://github.com/irfanbakhtiar/larawind-portfolio) 155 | -------------------------------------------------------------------------------- /app/Http/Controllers/DashboardProjectController.php: -------------------------------------------------------------------------------- 1 | Projects::where('user_id', auth()->user()->id)->paginate(5), 25 | 'title' => 'Project', 26 | ]); 27 | } 28 | 29 | /** 30 | * Show the form for creating a new resource. 31 | * 32 | * @return \Illuminate\Http\Response 33 | */ 34 | public function create() 35 | { 36 | return view('dashboard.project.create', [ 37 | 'title' => 'Create Project', 38 | 'category' => Categories::all() 39 | ]); 40 | } 41 | 42 | /** 43 | * Store a newly created resource in storage. 44 | * 45 | * @param \Illuminate\Http\Request $request 46 | * @return \Illuminate\Http\Response 47 | */ 48 | public function store(Request $request) 49 | { 50 | 51 | $validatedData = $request->validate([ 52 | 'title' => 'required|max:100', 53 | 'slug' => 'required|unique:projects', 54 | 'categories_id' => 'required', 55 | 'image' => 'image|mimes:jpeg,png,jpg|max:1024|dimensions:max_width=700,max_height=360,min_width=360,min_height=360', 56 | 'body' => 'required' 57 | ]); 58 | 59 | if ($request->file('image')) { 60 | $validatedData['image'] = $request->file('image')->store('project-images'); 61 | } 62 | $validatedData['user_id'] = auth()->user()->id; 63 | $validatedData['excerpt'] = Str::limit(strip_tags($request->body), 190); 64 | 65 | Projects::create($validatedData); 66 | return redirect('/dashboard/project')->with('success', 'New project has been added!'); 67 | } 68 | 69 | /** 70 | * Display the specified resource. 71 | * 72 | * @param \App\Models\Projects $projects 73 | * @return \Illuminate\Http\Response 74 | */ 75 | public function show(Projects $project) 76 | { 77 | return view('dashboard.project.show', [ 78 | 'projects' => $project, 79 | 'title' => 'Project', 80 | ]); 81 | } 82 | 83 | /** 84 | * Show the form for editing the specified resource. 85 | * 86 | * @param \App\Models\Projects $projects 87 | * @return \Illuminate\Http\Response 88 | */ 89 | public function edit(Projects $project) 90 | { 91 | return view('dashboard.project.edit', [ 92 | 'projects' => $project, 93 | 'title' => 'Edit Project', 94 | 'category' => Categories::all() 95 | ]); 96 | } 97 | 98 | /** 99 | * Update the specified resource in storage. 100 | * 101 | * @param \Illuminate\Http\Request $request 102 | * @param \App\Models\Projects $projects 103 | * @return \Illuminate\Http\Response 104 | */ 105 | public function update(Request $request, Projects $project) 106 | { 107 | $rules = [ 108 | 'title' => 'required|max:100', 109 | 'categories_id' => 'required', 110 | 'image' => 'image|mimes:jpeg,png,jpg|max:1024|dimensions:max_width=700,max_height=360,min_width=360,min_height=360', 111 | 'body' => 'required' 112 | ]; 113 | 114 | if ($request->slug != $project->slug) { 115 | $rules['slug'] = 'required|unique:projects'; 116 | } 117 | 118 | $validatedData = $request->validate($rules); 119 | 120 | if ($request->file('image')) { 121 | if ($request->oldImage) { 122 | Storage::delete($request->oldImage); 123 | } 124 | $validatedData['image'] = $request->file('image')->store('project-images'); 125 | } 126 | 127 | $validatedData['user_id'] = auth()->user()->id; 128 | $validatedData['excerpt'] = Str::limit(strip_tags($request->body), 190); 129 | 130 | Projects::where('id', $project->id) 131 | ->update($validatedData); 132 | return redirect('/dashboard/project')->with('success', 'Project has been update!'); 133 | } 134 | 135 | /** 136 | * Remove the specified resource from storage. 137 | * 138 | * @param \App\Models\Projects $projects 139 | * @return \Illuminate\Http\Response 140 | */ 141 | public function destroy(Projects $project) 142 | { 143 | if ($project->image) { 144 | Storage::delete($project->image); 145 | } 146 | Projects::destroy($project->id); 147 | return redirect('/dashboard/project')->with('success', 'Project has been deleted!'); 148 | } 149 | 150 | public function checkSlug(Request $request) 151 | { 152 | $slug = SlugService::createSlug(Projects::class, 'slug', $request->title); 153 | return response()->json(['slug' => $slug]); 154 | } 155 | } 156 | -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- 1 | env('DB_CONNECTION', 'mysql'), 19 | 20 | /* 21 | |-------------------------------------------------------------------------- 22 | | Database Connections 23 | |-------------------------------------------------------------------------- 24 | | 25 | | Here are each of the database connections setup for your application. 26 | | Of course, examples of configuring each database platform that is 27 | | supported by Laravel is shown below to make development simple. 28 | | 29 | | 30 | | All database work in Laravel is done through the PHP PDO facilities 31 | | so make sure you have the driver for your particular database of 32 | | choice installed on your machine before you begin development. 33 | | 34 | */ 35 | 36 | 'connections' => [ 37 | 38 | 'sqlite' => [ 39 | 'driver' => 'sqlite', 40 | 'url' => env('DATABASE_URL'), 41 | 'database' => env('DB_DATABASE', database_path('database.sqlite')), 42 | 'prefix' => '', 43 | 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), 44 | ], 45 | 46 | 'mysql' => [ 47 | 'driver' => 'mysql', 48 | 'url' => env('DATABASE_URL'), 49 | 'host' => env('DB_HOST', '127.0.0.1'), 50 | 'port' => env('DB_PORT', '3306'), 51 | 'database' => env('DB_DATABASE', 'forge'), 52 | 'username' => env('DB_USERNAME', 'forge'), 53 | 'password' => env('DB_PASSWORD', ''), 54 | 'unix_socket' => env('DB_SOCKET', ''), 55 | 'charset' => 'utf8mb4', 56 | 'collation' => 'utf8mb4_unicode_ci', 57 | 'prefix' => '', 58 | 'prefix_indexes' => true, 59 | 'strict' => true, 60 | 'engine' => null, 61 | 'options' => extension_loaded('pdo_mysql') ? array_filter([ 62 | PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), 63 | ]) : [], 64 | ], 65 | 66 | 'pgsql' => [ 67 | 'driver' => 'pgsql', 68 | 'url' => env('DATABASE_URL'), 69 | 'host' => env('DB_HOST', '127.0.0.1'), 70 | 'port' => env('DB_PORT', '5432'), 71 | 'database' => env('DB_DATABASE', 'forge'), 72 | 'username' => env('DB_USERNAME', 'forge'), 73 | 'password' => env('DB_PASSWORD', ''), 74 | 'charset' => 'utf8', 75 | 'prefix' => '', 76 | 'prefix_indexes' => true, 77 | 'schema' => 'public', 78 | 'sslmode' => 'prefer', 79 | ], 80 | 81 | 'sqlsrv' => [ 82 | 'driver' => 'sqlsrv', 83 | 'url' => env('DATABASE_URL'), 84 | 'host' => env('DB_HOST', 'localhost'), 85 | 'port' => env('DB_PORT', '1433'), 86 | 'database' => env('DB_DATABASE', 'forge'), 87 | 'username' => env('DB_USERNAME', 'forge'), 88 | 'password' => env('DB_PASSWORD', ''), 89 | 'charset' => 'utf8', 90 | 'prefix' => '', 91 | 'prefix_indexes' => true, 92 | ], 93 | 94 | ], 95 | 96 | /* 97 | |-------------------------------------------------------------------------- 98 | | Migration Repository Table 99 | |-------------------------------------------------------------------------- 100 | | 101 | | This table keeps track of all the migrations that have already run for 102 | | your application. Using this information, we can determine which of 103 | | the migrations on disk haven't actually been run in the database. 104 | | 105 | */ 106 | 107 | 'migrations' => 'migrations', 108 | 109 | /* 110 | |-------------------------------------------------------------------------- 111 | | Redis Databases 112 | |-------------------------------------------------------------------------- 113 | | 114 | | Redis is an open source, fast, and advanced key-value store that also 115 | | provides a richer body of commands than a typical key-value system 116 | | such as APC or Memcached. Laravel makes it easy to dig right in. 117 | | 118 | */ 119 | 120 | 'redis' => [ 121 | 122 | 'client' => env('REDIS_CLIENT', 'phpredis'), 123 | 124 | 'options' => [ 125 | 'cluster' => env('REDIS_CLUSTER', 'redis'), 126 | 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'), 127 | ], 128 | 129 | 'default' => [ 130 | 'url' => env('REDIS_URL'), 131 | 'host' => env('REDIS_HOST', '127.0.0.1'), 132 | 'password' => env('REDIS_PASSWORD', null), 133 | 'port' => env('REDIS_PORT', '6379'), 134 | 'database' => env('REDIS_DB', '0'), 135 | ], 136 | 137 | 'cache' => [ 138 | 'url' => env('REDIS_URL'), 139 | 'host' => env('REDIS_HOST', '127.0.0.1'), 140 | 'password' => env('REDIS_PASSWORD', null), 141 | 'port' => env('REDIS_PORT', '6379'), 142 | 'database' => env('REDIS_CACHE_DB', '1'), 143 | ], 144 | 145 | ], 146 | 147 | ]; 148 | -------------------------------------------------------------------------------- /config/sluggable.php: -------------------------------------------------------------------------------- 1 | name; 10 | * 11 | * Or it can be an array of fields, like ["name", "company"], which builds a slug from: 12 | * 13 | * $model->name . ' ' . $model->company; 14 | * 15 | * If you've defined custom getters in your model, you can use those too, 16 | * since Eloquent will call them when you request a custom attribute. 17 | * 18 | * Defaults to null, which uses the toString() method on your model. 19 | */ 20 | 21 | 'source' => null, 22 | 23 | /** 24 | * The maximum length of a generated slug. Defaults to "null", which means 25 | * no length restrictions are enforced. Set it to a positive integer if you 26 | * want to make sure your slugs aren't too long. 27 | */ 28 | 29 | 'maxLength' => null, 30 | 31 | /** 32 | * If you are setting a maximum length on your slugs, you may not want the 33 | * truncated string to split a word in half. The default setting of "true" 34 | * will ensure this, e.g. with a maxLength of 12: 35 | * 36 | * "my source string" -> "my-source" 37 | * 38 | * Setting it to "false" will simply truncate the generated slug at the 39 | * desired length, e.g.: 40 | * 41 | * "my source string" -> "my-source-st" 42 | */ 43 | 44 | 'maxLengthKeepWords' => true, 45 | 46 | /** 47 | * If left to "null", then use the cocur/slugify package to generate the slug 48 | * (with the separator defined below). 49 | * 50 | * Set this to a closure that accepts two parameters (string and separator) 51 | * to define a custom slugger. e.g.: 52 | * 53 | * 'method' => function( $string, $sep ) { 54 | * return preg_replace('/[^a-z]+/i', $sep, $string); 55 | * }, 56 | * 57 | * Otherwise, this will be treated as a callable to be used. e.g.: 58 | * 59 | * 'method' => array('Str','slug'), 60 | */ 61 | 62 | 'method' => null, 63 | 64 | /** 65 | * Separator to use when generating slugs. Defaults to a hyphen. 66 | */ 67 | 68 | 'separator' => '-', 69 | 70 | /** 71 | * Enforce uniqueness of slugs? Defaults to true. 72 | * If a generated slug already exists, an incremental numeric 73 | * value will be appended to the end until a unique slug is found. e.g.: 74 | * 75 | * my-slug 76 | * my-slug-1 77 | * my-slug-2 78 | */ 79 | 80 | 'unique' => true, 81 | 82 | /** 83 | * If you are enforcing unique slugs, the default is to add an 84 | * incremental value to the end of the base slug. Alternatively, you 85 | * can change this value to a closure that accepts three parameters: 86 | * the base slug, the separator, and a Collection of the other 87 | * "similar" slugs. The closure should return the new unique 88 | * suffix to append to the slug. 89 | */ 90 | 91 | 'uniqueSuffix' => null, 92 | 93 | /** 94 | * What is the first suffix to add to a slug to make it unique? 95 | * For the default method of adding incremental integers, we start 96 | * counting at 2, so the list of slugs would be, e.g.: 97 | * 98 | * - my-post 99 | * - my-post-2 100 | * - my-post-3 101 | */ 102 | 'firstUniqueSuffix' => 2, 103 | 104 | /** 105 | * Should we include the trashed items when generating a unique slug? 106 | * This only applies if the softDelete property is set for the Eloquent model. 107 | * If set to "false", then a new slug could duplicate one that exists on a trashed model. 108 | * If set to "true", then uniqueness is enforced across trashed and existing models. 109 | */ 110 | 111 | 'includeTrashed' => false, 112 | 113 | /** 114 | * An array of slug names that can never be used for this model, 115 | * e.g. to prevent collisions with existing routes or controller methods, etc.. 116 | * Defaults to null (i.e. no reserved names). 117 | * Can be a static array, e.g.: 118 | * 119 | * 'reserved' => array('add', 'delete'), 120 | * 121 | * or a closure that returns an array of reserved names. 122 | * If using a closure, it will accept one parameter: the model itself, and should 123 | * return an array of reserved names, or null. e.g. 124 | * 125 | * 'reserved' => function( Model $model) { 126 | * return $model->some_method_that_returns_an_array(); 127 | * } 128 | * 129 | * In the case of a slug that gets generated with one of these reserved names, 130 | * we will do: 131 | * 132 | * $slug .= $separator + "1" 133 | * 134 | * and continue from there. 135 | */ 136 | 137 | 'reserved' => null, 138 | 139 | /** 140 | * Whether to update the slug value when a model is being 141 | * re-saved (i.e. already exists). Defaults to false, which 142 | * means slugs are not updated. 143 | * 144 | * Be careful! If you are using slugs to generate URLs, then 145 | * updating your slug automatically might change your URLs which 146 | * is probably not a good idea from an SEO point of view. 147 | * Only set this to true if you understand the possible consequences. 148 | */ 149 | 150 | 'onUpdate' => false, 151 | 152 | /** 153 | * If the default slug engine of cocur/slugify is used, this array of 154 | * configuration options will be used when instantiating the engine. 155 | */ 156 | 'slugEngineOptions' => [], 157 | 158 | ]; 159 | -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- 1 | env('SESSION_DRIVER', 'file'), 22 | 23 | /* 24 | |-------------------------------------------------------------------------- 25 | | Session Lifetime 26 | |-------------------------------------------------------------------------- 27 | | 28 | | Here you may specify the number of minutes that you wish the session 29 | | to be allowed to remain idle before it expires. If you want them 30 | | to immediately expire on the browser closing, set that option. 31 | | 32 | */ 33 | 34 | 'lifetime' => env('SESSION_LIFETIME', 120), 35 | 36 | 'expire_on_close' => false, 37 | 38 | /* 39 | |-------------------------------------------------------------------------- 40 | | Session Encryption 41 | |-------------------------------------------------------------------------- 42 | | 43 | | This option allows you to easily specify that all of your session data 44 | | should be encrypted before it is stored. All encryption will be run 45 | | automatically by Laravel and you can use the Session like normal. 46 | | 47 | */ 48 | 49 | 'encrypt' => false, 50 | 51 | /* 52 | |-------------------------------------------------------------------------- 53 | | Session File Location 54 | |-------------------------------------------------------------------------- 55 | | 56 | | When using the native session driver, we need a location where session 57 | | files may be stored. A default has been set for you but a different 58 | | location may be specified. This is only needed for file sessions. 59 | | 60 | */ 61 | 62 | 'files' => storage_path('framework/sessions'), 63 | 64 | /* 65 | |-------------------------------------------------------------------------- 66 | | Session Database Connection 67 | |-------------------------------------------------------------------------- 68 | | 69 | | When using the "database" or "redis" session drivers, you may specify a 70 | | connection that should be used to manage these sessions. This should 71 | | correspond to a connection in your database configuration options. 72 | | 73 | */ 74 | 75 | 'connection' => env('SESSION_CONNECTION', null), 76 | 77 | /* 78 | |-------------------------------------------------------------------------- 79 | | Session Database Table 80 | |-------------------------------------------------------------------------- 81 | | 82 | | When using the "database" session driver, you may specify the table we 83 | | should use to manage the sessions. Of course, a sensible default is 84 | | provided for you; however, you are free to change this as needed. 85 | | 86 | */ 87 | 88 | 'table' => 'sessions', 89 | 90 | /* 91 | |-------------------------------------------------------------------------- 92 | | Session Cache Store 93 | |-------------------------------------------------------------------------- 94 | | 95 | | While using one of the framework's cache driven session backends you may 96 | | list a cache store that should be used for these sessions. This value 97 | | must match with one of the application's configured cache "stores". 98 | | 99 | | Affects: "apc", "dynamodb", "memcached", "redis" 100 | | 101 | */ 102 | 103 | 'store' => env('SESSION_STORE', null), 104 | 105 | /* 106 | |-------------------------------------------------------------------------- 107 | | Session Sweeping Lottery 108 | |-------------------------------------------------------------------------- 109 | | 110 | | Some session drivers must manually sweep their storage location to get 111 | | rid of old sessions from storage. Here are the chances that it will 112 | | happen on a given request. By default, the odds are 2 out of 100. 113 | | 114 | */ 115 | 116 | 'lottery' => [2, 100], 117 | 118 | /* 119 | |-------------------------------------------------------------------------- 120 | | Session Cookie Name 121 | |-------------------------------------------------------------------------- 122 | | 123 | | Here you may change the name of the cookie used to identify a session 124 | | instance by ID. The name specified here will get used every time a 125 | | new session cookie is created by the framework for every driver. 126 | | 127 | */ 128 | 129 | 'cookie' => env( 130 | 'SESSION_COOKIE', 131 | Str::slug(env('APP_NAME', 'laravel'), '_').'_session' 132 | ), 133 | 134 | /* 135 | |-------------------------------------------------------------------------- 136 | | Session Cookie Path 137 | |-------------------------------------------------------------------------- 138 | | 139 | | The session cookie path determines the path for which the cookie will 140 | | be regarded as available. Typically, this will be the root path of 141 | | your application but you are free to change this when necessary. 142 | | 143 | */ 144 | 145 | 'path' => '/', 146 | 147 | /* 148 | |-------------------------------------------------------------------------- 149 | | Session Cookie Domain 150 | |-------------------------------------------------------------------------- 151 | | 152 | | Here you may change the domain of the cookie used to identify a session 153 | | in your application. This will determine which domains the cookie is 154 | | available to in your application. A sensible default has been set. 155 | | 156 | */ 157 | 158 | 'domain' => env('SESSION_DOMAIN', null), 159 | 160 | /* 161 | |-------------------------------------------------------------------------- 162 | | HTTPS Only Cookies 163 | |-------------------------------------------------------------------------- 164 | | 165 | | By setting this option to true, session cookies will only be sent back 166 | | to the server if the browser has a HTTPS connection. This will keep 167 | | the cookie from being sent to you when it can't be done securely. 168 | | 169 | */ 170 | 171 | 'secure' => env('SESSION_SECURE_COOKIE'), 172 | 173 | /* 174 | |-------------------------------------------------------------------------- 175 | | HTTP Access Only 176 | |-------------------------------------------------------------------------- 177 | | 178 | | Setting this value to true will prevent JavaScript from accessing the 179 | | value of the cookie and the cookie will only be accessible through 180 | | the HTTP protocol. You are free to modify this option if needed. 181 | | 182 | */ 183 | 184 | 'http_only' => true, 185 | 186 | /* 187 | |-------------------------------------------------------------------------- 188 | | Same-Site Cookies 189 | |-------------------------------------------------------------------------- 190 | | 191 | | This option determines how your cookies behave when cross-site requests 192 | | take place, and can be used to mitigate CSRF attacks. By default, we 193 | | will set this value to "lax" since this is a secure default value. 194 | | 195 | | Supported: "lax", "strict", "none", null 196 | | 197 | */ 198 | 199 | 'same_site' => 'lax', 200 | 201 | ]; 202 | -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | 'admin', 21 | 'name' => 'Muhammad Irfan Bakhtiar', 22 | 'email' => 'admin@gmail.com', 23 | 'job' => 'Front End Developer', 24 | 'location' => 'Central Java, Indonesia', 25 | 'about' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.', 26 | 'password' => bcrypt('Larawind2023') 27 | ]); 28 | 29 | Categories::create([ 30 | 'name' => 'Dekstop', 31 | 'slug' => 'dekstop', 32 | 'user_id' => 1 33 | ]); 34 | 35 | Categories::create([ 36 | 'name' => 'Mobile Apps', 37 | 'slug' => 'mobile-apps', 38 | 'user_id' => 1 39 | ]); 40 | 41 | Categories::create([ 42 | 'name' => 'Website', 43 | 'slug' => 'website', 44 | 'user_id' => 1 45 | ]); 46 | 47 | Projects::create([ 48 | 'title' => 'First Project', 49 | 'slug' => 'first-project', 50 | 'excerpt' => 'Lorem ipsum dolor sit amet consectetur, adipisicing elit. Eius maiores quam tenetur rerum nihil corporis quisquam odio in, laudantium rem ex', 51 | 'body' => 'Lorem ipsum dolor sit amet consectetur, adipisicing elit. Eius maiores quam tenetur rerum nihil corporis quisquam odio in, laudantium rem ex ullam tempore delectus beatae similique amet eligendi at perferendis, quidem, quod est consequatur! Temporibus perferendis et doloribus illum minima cumque velit. Quibusdam nemo doloribus aut minus sunt aliquam excepturi ut, dignissimos cumque adipisci unde fugit at quis quia rerum quaerat sit ullam provident accusantium expedita ratione? Vero, maiores? Optio similique autem quas vitae accusantium totam consectetur possimus veritatis ducimus labore molestiae voluptatibus, aliquid cum doloremque. Sit tempore praesentium esse eaque nesciunt ipsum sed accusamus unde rem, tenetur, dolores pariatur.', 52 | 'categories_id' => 1, 53 | 'user_id' => 1 54 | ]); 55 | 56 | Projects::create([ 57 | 'title' => 'Second Project', 58 | 'slug' => 'second-project', 59 | 'excerpt' => 'Lorem ipsum dolor sit amet consectetur, adipisicing elit. Eius maiores quam tenetur rerum nihil corporis quisquam odio in, laudantium rem ex', 60 | 'body' => 'Lorem ipsum dolor sit amet consectetur, adipisicing elit. Eius maiores quam tenetur rerum nihil corporis quisquam odio in, laudantium rem ex ullam tempore delectus beatae similique amet eligendi at perferendis, quidem, quod est consequatur! Temporibus perferendis et doloribus illum minima cumque velit. Quibusdam nemo doloribus aut minus sunt aliquam excepturi ut, dignissimos cumque adipisci unde fugit at quis quia rerum quaerat sit ullam provident accusantium expedita ratione? Vero, maiores? Optio similique autem quas vitae accusantium totam consectetur possimus veritatis ducimus labore molestiae voluptatibus, aliquid cum doloremque. Sit tempore praesentium esse eaque nesciunt ipsum sed accusamus unde rem, tenetur, dolores pariatur.', 61 | 'categories_id' => 1, 62 | 'user_id' => 1 63 | ]); 64 | 65 | Projects::create([ 66 | 'title' => 'Third Project', 67 | 'slug' => 'third-project', 68 | 'excerpt' => 'Lorem ipsum dolor sit amet consectetur, adipisicing elit. Eius maiores quam tenetur rerum nihil corporis quisquam odio in, laudantium rem ex', 69 | 'body' => 'Lorem ipsum dolor sit amet consectetur, adipisicing elit. Eius maiores quam tenetur rerum nihil corporis quisquam odio in, laudantium rem ex ullam tempore delectus beatae similique amet eligendi at perferendis, quidem, quod est consequatur! Temporibus perferendis et doloribus illum minima cumque velit. Quibusdam nemo doloribus aut minus sunt aliquam excepturi ut, dignissimos cumque adipisci unde fugit at quis quia rerum quaerat sit ullam provident accusantium expedita ratione? Vero, maiores? Optio similique autem quas vitae accusantium totam consectetur possimus veritatis ducimus labore molestiae voluptatibus, aliquid cum doloremque. Sit tempore praesentium esse eaque nesciunt ipsum sed accusamus unde rem, tenetur, dolores pariatur.', 70 | 'categories_id' => 2, 71 | 'user_id' => 1 72 | ]); 73 | 74 | Projects::create([ 75 | 'title' => 'Fourth Project', 76 | 'slug' => 'fourth-project', 77 | 'excerpt' => 'Lorem ipsum dolor sit amet consectetur, adipisicing elit. Eius maiores quam tenetur rerum nihil corporis quisquam odio in, laudantium rem ex', 78 | 'body' => 'Lorem ipsum dolor sit amet consectetur, adipisicing elit. Eius maiores quam tenetur rerum nihil corporis quisquam odio in, laudantium rem ex ullam tempore delectus beatae similique amet eligendi at perferendis, quidem, quod est consequatur! Temporibus perferendis et doloribus illum minima cumque velit. Quibusdam nemo doloribus aut minus sunt aliquam excepturi ut, dignissimos cumque adipisci unde fugit at quis quia rerum quaerat sit ullam provident accusantium expedita ratione? Vero, maiores? Optio similique autem quas vitae accusantium totam consectetur possimus veritatis ducimus labore molestiae voluptatibus, aliquid cum doloremque. Sit tempore praesentium esse eaque nesciunt ipsum sed accusamus unde rem, tenetur, dolores pariatur.', 79 | 'categories_id' => 3, 80 | 'user_id' => 1 81 | ]); 82 | 83 | Projects::create([ 84 | 'title' => 'Fifth Project', 85 | 'slug' => 'fifth-project', 86 | 'excerpt' => 'Lorem ipsum dolor sit amet consectetur, adipisicing elit. Eius maiores quam tenetur rerum nihil corporis quisquam odio in, laudantium rem ex', 87 | 'body' => 'Lorem ipsum dolor sit amet consectetur, adipisicing elit. Eius maiores quam tenetur rerum nihil corporis quisquam odio in, laudantium rem ex ullam tempore delectus beatae similique amet eligendi at perferendis, quidem, quod est consequatur! Temporibus perferendis et doloribus illum minima cumque velit. Quibusdam nemo doloribus aut minus sunt aliquam excepturi ut, dignissimos cumque adipisci unde fugit at quis quia rerum quaerat sit ullam provident accusantium expedita ratione? Vero, maiores? Optio similique autem quas vitae accusantium totam consectetur possimus veritatis ducimus labore molestiae voluptatibus, aliquid cum doloremque. Sit tempore praesentium esse eaque nesciunt ipsum sed accusamus unde rem, tenetur, dolores pariatur.', 88 | 'categories_id' => 3, 89 | 'user_id' => 1 90 | ]); 91 | 92 | Projects::create([ 93 | 'title' => 'Sixth Project', 94 | 'slug' => 'sixth-project', 95 | 'excerpt' => 'Lorem ipsum dolor sit amet consectetur, adipisicing elit. Eius maiores quam tenetur rerum nihil corporis quisquam odio in, laudantium rem ex', 96 | 'body' => 'Lorem ipsum dolor sit amet consectetur, adipisicing elit. Eius maiores quam tenetur rerum nihil corporis quisquam odio in, laudantium rem ex ullam tempore delectus beatae similique amet eligendi at perferendis, quidem, quod est consequatur! Temporibus perferendis et doloribus illum minima cumque velit. Quibusdam nemo doloribus aut minus sunt aliquam excepturi ut, dignissimos cumque adipisci unde fugit at quis quia rerum quaerat sit ullam provident accusantium expedita ratione? Vero, maiores? Optio similique autem quas vitae accusantium totam consectetur possimus veritatis ducimus labore molestiae voluptatibus, aliquid cum doloremque. Sit tempore praesentium esse eaque nesciunt ipsum sed accusamus unde rem, tenetur, dolores pariatur.', 97 | 'categories_id' => 2, 98 | 'user_id' => 1 99 | ]); 100 | } 101 | } 102 | -------------------------------------------------------------------------------- /resources/views/vendor/pagination/tailwind.blade.php: -------------------------------------------------------------------------------- 1 | @if ($paginator->hasPages()) 2 | 136 | @endif 137 | -------------------------------------------------------------------------------- /resources/views/dashboard/category/create.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.admin.main') 2 | @section('container') 3 | {{-- CONTENT MENU START --}} 4 | 5 | 6 |
7 |
8 | 50 |
51 |

52 |
53 | Create New Category 54 |
55 |

56 |
57 | @error('name') 58 | 82 | @enderror 83 | @csrf 84 |
85 | 87 | 90 |
91 |
92 | 94 | 97 |
98 | 106 |
107 |
108 |
109 |
110 | 111 | {{-- CONTENT MENU END --}} 112 | 122 | @endsection 123 | -------------------------------------------------------------------------------- /resources/views/layouts/foot.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | {{--
8 |
9 |
10 |
11 |
12 |

Want to make 13 | beautiful website ? 14 |

15 | 27 |
28 |
29 | Lorem ipsum, dolor sit amet 30 | consectetur adipisicing elit. Harum possimus sint cumque. 31 |
32 | Built with: 33 | 35 | Laravel 36 | 38 | 39 | 41 | Tailwind CSS 42 | 44 | 45 |
46 |
47 |
48 |
49 |
50 |
--}} 51 | 91 | 92 | -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- 1 | 'The :attribute must be accepted.', 17 | 'accepted_if' => 'The :attribute must be accepted when :other is :value.', 18 | 'active_url' => 'The :attribute is not a valid URL.', 19 | 'after' => 'The :attribute must be a date after :date.', 20 | 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', 21 | 'alpha' => 'The :attribute must only contain letters.', 22 | 'alpha_dash' => 'The :attribute must only contain letters, numbers, dashes and underscores.', 23 | 'alpha_num' => 'The :attribute must only contain letters and numbers.', 24 | 'array' => 'The :attribute must be an array.', 25 | 'before' => 'The :attribute must be a date before :date.', 26 | 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', 27 | 'between' => [ 28 | 'numeric' => 'The :attribute must be between :min and :max.', 29 | 'file' => 'The :attribute must be between :min and :max kilobytes.', 30 | 'string' => 'The :attribute must be between :min and :max characters.', 31 | 'array' => 'The :attribute must have between :min and :max items.', 32 | ], 33 | 'boolean' => 'The :attribute field must be true or false.', 34 | 'confirmed' => 'The :attribute confirmation does not match.', 35 | 'current_password' => 'The password is incorrect.', 36 | 'date' => 'The :attribute is not a valid date.', 37 | 'date_equals' => 'The :attribute must be a date equal to :date.', 38 | 'date_format' => 'The :attribute does not match the format :format.', 39 | 'declined' => 'The :attribute must be declined.', 40 | 'declined_if' => 'The :attribute must be declined when :other is :value.', 41 | 'different' => 'The :attribute and :other must be different.', 42 | 'digits' => 'The :attribute must be :digits digits.', 43 | 'digits_between' => 'The :attribute must be between :min and :max digits.', 44 | 'dimensions' => 'The :attribute has invalid image dimensions.', 45 | 'distinct' => 'The :attribute field has a duplicate value.', 46 | 'email' => 'The :attribute must be a valid email address.', 47 | 'ends_with' => 'The :attribute must end with one of the following: :values.', 48 | 'enum' => 'The selected :attribute is invalid.', 49 | 'exists' => 'The selected :attribute is invalid.', 50 | 'file' => 'The :attribute must be a file.', 51 | 'filled' => 'The :attribute field must have a value.', 52 | 'gt' => [ 53 | 'numeric' => 'The :attribute must be greater than :value.', 54 | 'file' => 'The :attribute must be greater than :value kilobytes.', 55 | 'string' => 'The :attribute must be greater than :value characters.', 56 | 'array' => 'The :attribute must have more than :value items.', 57 | ], 58 | 'gte' => [ 59 | 'numeric' => 'The :attribute must be greater than or equal to :value.', 60 | 'file' => 'The :attribute must be greater than or equal to :value kilobytes.', 61 | 'string' => 'The :attribute must be greater than or equal to :value characters.', 62 | 'array' => 'The :attribute must have :value items or more.', 63 | ], 64 | 'image' => 'The :attribute must be an image.', 65 | 'in' => 'The selected :attribute is invalid.', 66 | 'in_array' => 'The :attribute field does not exist in :other.', 67 | 'integer' => 'The :attribute must be an integer.', 68 | 'ip' => 'The :attribute must be a valid IP address.', 69 | 'ipv4' => 'The :attribute must be a valid IPv4 address.', 70 | 'ipv6' => 'The :attribute must be a valid IPv6 address.', 71 | 'json' => 'The :attribute must be a valid JSON string.', 72 | 'lt' => [ 73 | 'numeric' => 'The :attribute must be less than :value.', 74 | 'file' => 'The :attribute must be less than :value kilobytes.', 75 | 'string' => 'The :attribute must be less than :value characters.', 76 | 'array' => 'The :attribute must have less than :value items.', 77 | ], 78 | 'lte' => [ 79 | 'numeric' => 'The :attribute must be less than or equal to :value.', 80 | 'file' => 'The :attribute must be less than or equal to :value kilobytes.', 81 | 'string' => 'The :attribute must be less than or equal to :value characters.', 82 | 'array' => 'The :attribute must not have more than :value items.', 83 | ], 84 | 'mac_address' => 'The :attribute must be a valid MAC address.', 85 | 'max' => [ 86 | 'numeric' => 'The :attribute must not be greater than :max.', 87 | 'file' => 'The :attribute must not be greater than :max kilobytes.', 88 | 'string' => 'The :attribute must not be greater than :max characters.', 89 | 'array' => 'The :attribute must not have more than :max items.', 90 | ], 91 | 'mimes' => 'The :attribute must be a file of type: :values.', 92 | 'mimetypes' => 'The :attribute must be a file of type: :values.', 93 | 'min' => [ 94 | 'numeric' => 'The :attribute must be at least :min.', 95 | 'file' => 'The :attribute must be at least :min kilobytes.', 96 | 'string' => 'The :attribute must be at least :min characters.', 97 | 'array' => 'The :attribute must have at least :min items.', 98 | ], 99 | 'multiple_of' => 'The :attribute must be a multiple of :value.', 100 | 'not_in' => 'The selected :attribute is invalid.', 101 | 'not_regex' => 'The :attribute format is invalid.', 102 | 'numeric' => 'The :attribute must be a number.', 103 | 'password' => 'The password is incorrect.', 104 | 'present' => 'The :attribute field must be present.', 105 | 'prohibited' => 'The :attribute field is prohibited.', 106 | 'prohibited_if' => 'The :attribute field is prohibited when :other is :value.', 107 | 'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.', 108 | 'prohibits' => 'The :attribute field prohibits :other from being present.', 109 | 'regex' => 'The :attribute format is invalid.', 110 | 'required' => 'The :attribute field is required.', 111 | 'required_array_keys' => 'The :attribute field must contain entries for: :values.', 112 | 'required_if' => 'The :attribute field is required when :other is :value.', 113 | 'required_unless' => 'The :attribute field is required unless :other is in :values.', 114 | 'required_with' => 'The :attribute field is required when :values is present.', 115 | 'required_with_all' => 'The :attribute field is required when :values are present.', 116 | 'required_without' => 'The :attribute field is required when :values is not present.', 117 | 'required_without_all' => 'The :attribute field is required when none of :values are present.', 118 | 'same' => 'The :attribute and :other must match.', 119 | 'size' => [ 120 | 'numeric' => 'The :attribute must be :size.', 121 | 'file' => 'The :attribute must be :size kilobytes.', 122 | 'string' => 'The :attribute must be :size characters.', 123 | 'array' => 'The :attribute must contain :size items.', 124 | ], 125 | 'starts_with' => 'The :attribute must start with one of the following: :values.', 126 | 'string' => 'The :attribute must be a string.', 127 | 'timezone' => 'The :attribute must be a valid timezone.', 128 | 'unique' => 'The :attribute has already been taken.', 129 | 'uploaded' => 'The :attribute failed to upload.', 130 | 'url' => 'The :attribute must be a valid URL.', 131 | 'uuid' => 'The :attribute must be a valid UUID.', 132 | 133 | /* 134 | |-------------------------------------------------------------------------- 135 | | Custom Validation Language Lines 136 | |-------------------------------------------------------------------------- 137 | | 138 | | Here you may specify custom validation messages for attributes using the 139 | | convention "attribute.rule" to name the lines. This makes it quick to 140 | | specify a specific custom language line for a given attribute rule. 141 | | 142 | */ 143 | 144 | 'custom' => [ 145 | 'attribute-name' => [ 146 | 'rule-name' => 'custom-message', 147 | ], 148 | ], 149 | 150 | /* 151 | |-------------------------------------------------------------------------- 152 | | Custom Validation Attributes 153 | |-------------------------------------------------------------------------- 154 | | 155 | | The following language lines are used to swap our attribute placeholder 156 | | with something more reader friendly such as "E-Mail Address" instead 157 | | of "email". This simply helps us make our message more expressive. 158 | | 159 | */ 160 | 161 | 'attributes' => [], 162 | 163 | ]; 164 | --------------------------------------------------------------------------------