Skip to content

Instantly share code, notes, and snippets.

@jjab2020
Created October 11, 2019 02:58
Show Gist options
  • Save jjab2020/9c095454cc638f416d6b23616db0ffac to your computer and use it in GitHub Desktop.
Save jjab2020/9c095454cc638f416d6b23616db0ffac to your computer and use it in GitHub Desktop.
@extends('layouts.main')
@section('content')
<div id="container" class="container">
<h1>Welcome to CodeIgniter!</h1>
<div id="app">
<div class="row">
<div class="col-sm-3">
<h1>Firstname : @{{firstname}}</h1>
</div>
<div class="mx-2"></div>
<div class="col-sm-3">
<h1>Lastname : @{{lastname}}</h1>
</div>
</div>
</div>
<div class="fas fa-user-plus">
{{$name}}
</div>
</div>
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment