http://www.oracle.com/technetwork/topics/linuxx86-64soft-092277.html
Download files:
| /** | |
| * Process datatables ajax request. | |
| * | |
| * @return \Illuminate\Http\JsonResponse | |
| */ | |
| public function allData(Request $request) | |
| { | |
| $registrations = Registration::with('product')->with('reg_type')->select('registrations.*'); | |
| $datatable = Datatables::of($registrations); |
| <template> | |
| <table> | |
| <thead> | |
| <tr> | |
| <th v-for="column in parameters.columns" v-html="title(column)"></th> | |
| </tr> | |
| </thead> | |
| <tfoot v-if="footer"> | |
| <tr> | |
| <th v-for="column in parameters.columns" v-html="column.footer"></th> |
| <?php | |
| namespace App\DataTables; | |
| use App\Asset; | |
| use Yajra\DataTables\Services\DataTable; | |
| class AssetsDataTable extends DataTable | |
| { | |
| /** |
Here are the simple steps needed to create a deployment from your local GIT repository to a server based on this in-depth tutorial.
You are developing in a working-copy on your local machine, lets say on the master branch. Most of the time, people would push code to a remote server like github.com or gitlab.com and pull or export it to a production server. Or you use a service like deepl.io to act upon a Web-Hook that's triggered that service.
This procedure is tested on Mac OS X 10.8 with Developpers tools installed (xCode).
PHP 5.4 installed with Homebrew.
Update: I wrote a blog post about this.
Download the following files from Oracle website (yes, you need to create an account and accept terms):
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
| #!/bin/sh | |
| ### | |
| # SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
| # For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
| ### | |
| # Alot of these configs have been taken from the various places | |
| # on the web, most from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |