<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Jalal Uddin</title>
    <description>The latest articles on Forem by Jalal Uddin (@dgvai).</description>
    <link>https://forem.com/dgvai</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F442442%2Fcf4ab8b1-3f23-4e12-845f-bdaa88654b5b.jpg</url>
      <title>Forem: Jalal Uddin</title>
      <link>https://forem.com/dgvai</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/dgvai"/>
    <language>en</language>
    <item>
      <title>Which would be better for career: Laravel or .NET Core?</title>
      <dc:creator>Jalal Uddin</dc:creator>
      <pubDate>Sat, 17 Oct 2020 10:34:02 +0000</pubDate>
      <link>https://forem.com/dgvai/which-would-be-better-for-career-laravel-or-net-core-3lij</link>
      <guid>https://forem.com/dgvai/which-would-be-better-for-career-laravel-or-net-core-3lij</guid>
      <description>&lt;p&gt;I have been a full-stack spider and been using LaravelPHP in back-end for almost 2 years. I also know .NET Framework to create WinForms earlier. &lt;/p&gt;

&lt;p&gt;Now my university life is going to be ended soon within 1 year, and now I want to do some career oriented programming.&lt;/p&gt;

&lt;p&gt;I did some google research between Laravel &amp;amp; .NET Core, I know which one faster which one is slower, I just want to know at the current market of the software industry which is more demanding?&lt;/p&gt;

</description>
      <category>laravel</category>
      <category>dotnet</category>
      <category>webdev</category>
      <category>discuss</category>
    </item>
    <item>
      <title>Using AdminLTE Blade Components in Laravel</title>
      <dc:creator>Jalal Uddin</dc:creator>
      <pubDate>Tue, 08 Sep 2020 17:52:14 +0000</pubDate>
      <link>https://forem.com/dgvai/using-adminlte-blade-components-in-laravel-3d2k</link>
      <guid>https://forem.com/dgvai/using-adminlte-blade-components-in-laravel-3d2k</guid>
      <description>&lt;p&gt;&lt;a href="https://adminlte.io/themes/dev/AdminLTE/index3.html"&gt;AdminLTE3&lt;/a&gt; is one of the most popular &lt;a href="https://getbootstrap.com/"&gt;Bootstrap&lt;/a&gt; admin template which is completely free. We can use AdminLTE in our &lt;a href="https://laravel.com/"&gt;Laravel&lt;/a&gt; projects in several ways. But since Laravel 7.x, we can use &lt;a href="https://laravel.com/docs/8.x/blade"&gt;Blade Components&lt;/a&gt; like &lt;code&gt;&amp;lt;x-component /&amp;gt;&lt;/code&gt; and make our development faster than before.&lt;/p&gt;

&lt;p&gt;We, backed developers, are mainly focused on Backed. Thus we need rapidness in frontend of view of Admin Panel. Using such a template of bootstrap is one of the first steps towards rapid-development. Another step can be using Blade Components in laravel.&lt;/p&gt;

&lt;h2&gt;
  
  
  Installation
&lt;/h2&gt;

&lt;p&gt;To get started with Laravel Blade components, you need to install a composer package:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;composer require dgvai/laravel-adminlte-components
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Extracting Plugins
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;php artisan vendor:publish &lt;span class="nt"&gt;--tag&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;adminlte-dg-plugins
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Configurations
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Option 1: You can use this package, stand-alone with &lt;a href="https://github.com/ColorlibHQ/AdminLTE/releases"&gt;AdminLTE&lt;/a&gt; installed in your app. You just need to add an &lt;strong&gt;&lt;code&gt;@yield('js')&lt;/code&gt;&lt;/strong&gt; at the bottom of your &lt;strong&gt;master&lt;/strong&gt; blade layout.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Option 2: [Recommended]&lt;/strong&gt; Or, if you use &lt;a href="https://github.com/jeroennoten/Laravel-AdminLTE"&gt;jeroennoten/Laravel-AdminLTE&lt;/a&gt; package, then you do not need to add anything at &lt;em&gt;master&lt;/em&gt;. I will &lt;strong&gt;recommend&lt;/strong&gt; to use this package.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you choose &lt;strong&gt;Option 2&lt;/strong&gt;, paste this config into the &lt;code&gt;config/adminlte.php&lt;/code&gt; file in &lt;code&gt;plugins&lt;/code&gt; key: &lt;a href="https://gist.github.com/dgvai/627eb96f84d1afc93ab878627d89a5fd"&gt;PASTE this configuation&lt;/a&gt; &lt;/p&gt;

&lt;h2&gt;
  
  
  Usage
&lt;/h2&gt;

&lt;p&gt;You can find full documentation of usage from the &lt;a href="https://github.com/dgvai/laravel-adminlte-components"&gt;repository&lt;/a&gt; link.&lt;/p&gt;

</description>
      <category>adminlte</category>
      <category>laravel</category>
      <category>blade</category>
    </item>
  </channel>
</rss>
